答案 0 :(得分:2)
这里发生的事情很少:
<p>
的较大内容的位置。使用边距来定位此<p>
,请参阅下面的我能够通过更改CSS来解决问题,如下所示:
#comments .commentBox { /* style.css line 483 */
background-color:#DCDCDC;
/*height:100px; --removed this */
min-height:100px;
position:relative;
}
#comments .commentBox .comment-content { /* style.css line 523 */
color:#676767;
font-size:0.91em;
font-weight:bold;
line-height:24px;
margin:52px 92px 0 0; /* -- added this */
/* -- removed these
position:absolute;
right:95px;
top:52px;
width:570px;
*/
}
答案 1 :(得分:0)
你想要clearfix hack。
将其添加到样式表中:
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
然后,将class="clearfix"
添加到您的div(或clearfix
到您现有的div类),它应该正确地清除该文本。