将div放在广告而不是下面

时间:2013-12-23 16:08:14

标签: jquery html css google-adwords

我有这段代码:

<div class="c1">                                    
  //code that makes a div move downwards                     
</div>  
<div class="banner">        
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>

  <ins class="adsbygoogle" style="display:inline-block;width:200px;height:200px;" ....>
  </ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>        
</div>  
在div类c1中有一个div,在单击按钮时向下滚动。如果不是谷歌广告代码,那么

<div class="banner">        
<img src="...">       
</div>

div应该是图像的顶部。但是,使用Google广告时,广告不会被覆盖。

如何将div置于Google广告之上?

1 个答案:

答案 0 :(得分:2)

只需进行这些更改就可以了

<div class="c1" style="position:absolute;z-index:2147483647">                                    
  //code that makes a div move downwards                     
</div>