wordpress 摘录中的 Adsense
Adsense in wordpress excerpt
我们正在尝试在 wordpress 摘录之间插入 adsense 广告。但是广告在帖子中重叠。如何使用 css 解决此问题。我的测试站点是 Tiny Life Boat
<div style="max-width:700px; align:center; padding-top:0px; padding-bottom:0px;">my ad code</div>
您的所有文章都向左浮动。所以你需要为你的 adv 包装器设置 clear 以获得正确的结果。
.adv-wrapper {
clear: both;
}
<div class="adv-wrapper">
Your add goes here!
</div>
请不要使用已弃用的 center
标签 W3 Schools
我们正在尝试在 wordpress 摘录之间插入 adsense 广告。但是广告在帖子中重叠。如何使用 css 解决此问题。我的测试站点是 Tiny Life Boat
<div style="max-width:700px; align:center; padding-top:0px; padding-bottom:0px;">my ad code</div>
您的所有文章都向左浮动。所以你需要为你的 adv 包装器设置 clear 以获得正确的结果。
.adv-wrapper {
clear: both;
}
<div class="adv-wrapper">
Your add goes here!
</div>
请不要使用已弃用的 center
标签 W3 Schools