合并的描述和其他信息。边框未扩展到内容

时间:2018-12-13 00:01:57

标签: php wordpress woocommerce

在Woocommerce中,我正在使用代码from this answer thread,并且它的工作原理是,边框不围绕内容延伸:

border does not extend around the content

有人知道如何解决此问题吗?

1 个答案:

答案 0 :(得分:0)

在关闭带有边框的div之前,您需要先进行clearfix。

<div class="clear"></div>

然后使用CSS

.clear { clear: both; }

或者您可以内联样式:

<div style="clear: both"></div>