gpt4 book ai didi

html - 在图像上重叠 Google Adsense

转载 作者:太空宇宙 更新时间:2023-11-04 15:09:00 25 4
gpt4 key购买 nike

我会将 google adsense 消息重叠到图片上。 enter image description here

我正在使用 Twitter Bootstrap

<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;
}

祝你好运!

关于html - 在图像上重叠 Google Adsense,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15556536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com