如何更改div的高度以覆盖文本区域(CSS)
原始 CSS 代码 http://www.faressoft.org/BlueCristalTheme/postView.php
结果应为
Orginal CSS Code
http://www.faressoft.org/BlueCristalTheme/postView.php
Result should be
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里发生了一些事情:
。使用边距来定位此
,请参见下文,
我可以通过更改 CSS 来解决该问题,如下所示:
few things going on here:
<p>
. use margins to position this<p>
, see belowI was able to fix the problem by changing your CSS as follows:
你想要clearfix hack。
将其添加到样式表中:
然后,将
class="clearfix"
添加到您的 div(或将clearfix
添加到现有的 div 类),它应该正确清除该文本。You want the clearfix hack.
Add this to your stylesheet:
Then, add
class="clearfix"
to your div (orclearfix
to your existing div class), and it should clear that text properly.