您好我正在使用Wordpress,
我的容器和图片标题有一些问题。
无论我尝试做什么,图像标题似乎都是重叠的。
我试过这个:
.entry-content .wp-caption {
/* border: 1px solid #E0E0E0; */
/* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.09);*/
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
/* -webkit-box-sizing: border-box;*/
box-sizing: border-box;
/* margin: 5px 0 30px 0;*/
max-width: 100%;
padding: 8px;
text-align: center;
}
但我仍然认为这是容器。
感谢。
答案 0 :(得分:1)
所有问题都来自样式float:left
float: left
之后,您必须clear:both
在这个div中
<div class="symple-box blue none " style="text-align:left; width:100%;">
</div>
添加此
<div class="clear"></div>
在这样的例子中
<div class="symple-box blue none " style="text-align:left; width:100%;">
your code
<div class="clear"></div>
</div>
这在css中
.clear {
clear: Both;
margin: 0;
padding: 0;
width: 0;
height: 0;
}