我想在<strong>
标记开始之前自动断行。我会尝试一些事情,但不知道该怎么做。
我试过了:
strong, b {font-weight: bolder;clear:both;display:block;}
和
strong:before, b:before {clear:both;display:block;height:1%}
strong, b {font-weight: bolder;}
有没有解决方案?
答案 0 :(得分:2)
下面
strong:before {
content: "";
display: table;
clear: both;
zoom: 1.0;
}
之后了解到这一点
答案 1 :(得分:0)
strong, b {
font-weight: bold;
display:block;
clear: both;
}