我使用背景颜色在评论网站的书中分隔/突出显示我的评论。书籍文本是正常的,没有(白色)背景。我的评论使用以下css:
#my-post-response{
margin: 5px 5px 10px 20px;
background-color:#FFFFCC;
border: 3px solid #888;
font-style: italic;
font-weight: bold;
padding: 10px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
position: relative;
behavior: url(/border-radius.htc);
}
问题是评论是在随机区域,当谷歌adsense相邻时,文本不重叠但背景颜色不重叠。请查看此屏幕截图:http://screencast.com/t/qRexO78j2
答案 0 :(得分:0)
如果没有能够看到实际代码,那将很困难。但看起来像是一个清算问题尝试添加
clear:both;
或clear: left;
/ clear:right;
元素,可以让您朝着正确的方向前进。
关于背景颜色问题,请尝试重新排序已清除的元素,以便向右浮动的元素首先显示在代码中,并为两个元素设置z-index,即z-index:100;
和z-index: 200;