html - div disappears in Chrome -


i can't understand, problem. have html code:

<div id="ad-wrapper" >     <div id="ad-left-wrapper" >         <img src="images/promo-left.png" alt="" />     </div>     <div id="ad-middle-wrapper" >         <img src="images/promo-middle.png" alt="" />     </div>     <div id="ad-right-wrapper" >         <img src="images/promo-right.png" alt="" />     </div> </div> 

and css it:

#ad-wrapper {     height: 450px;     width: 900px;     margin-top: 20px;     margin-bottom: 20px; }  #ad-left-wrapper {     width: 210px;     height: 450px;     float: left; }  /* middle , right blocks styles similar*/ 

and blocks disappears in google chrome. what's happened?

it's adblock chrome extension ;) rename id's


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -