我会将 google adsense 消息重叠到图像上。
我正在使用 Twitter 引导程序
<div id="row">
<div id="span12">
<img src="xxxxx"/ id="myimage"/>
<div id="googleadsense">google adsense code
</div>
<div>
我会将 google adsense 消息重叠到图像上。
我正在使用 Twitter 引导程序
<div id="row">
<div id="span12">
<img src="xxxxx"/ id="myimage"/>
<div id="googleadsense">google adsense code
</div>
<div>
我认为您应该能够通过将背景图像应用到您的 span12 div 然后定位 google adsense div 来做到这一点
HTML
<div id="row">
<div id="span12 myimage">
<div id="googleadsense">google adsense code </div>
</div>
<div>
CSS
.myimage{
position:relative: /* set so we can position the adsense child */
min-height:...;
background:#fff url('path/to/background-image.jpg') no-repeat left top;
}
.googleadsense{
position:absolute:
top:0;
right:0;
}
祝你好运!