Chrome doesn't want to display CSS block

Hi everyone, I have a little problem, chrome does not want to display the div block.

For firefox, for opera and even for IE, it works well, for chrome - no. Where could the problem be?

CSS

div#content div.ad_box{
float: left;
width: 247px;
height: auto;
border-radius: 4px;
background: #646d6e;

}

HTML

<div class="ad_box">
        <div style="text-align: center;">
            <img src="style/style_images/ad_2.jpg" alt="AD1" />
        </div>
 </div>
0
source share
1 answer

Going by the class name, I assume that it is blocked by the AdBlock extension (or something similar). This is a common Chrome issue in StackOverflow.

Disable the extension to block ads and reload the page, and now it should be displayed.

+3
source

All Articles