在css </strong>中的<strong>之前内联clearfix

时间:2011-11-17 22:25:12

标签: html tinymce css clearfix

我想在<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;}

有没有解决方案?

2 个答案:

答案 0 :(得分:2)

下面

strong:before {
    content: "";
    display: table;
    clear: both;
    zoom: 1.0;
}

http://jsfiddle.net/dxQBy/8/

几周前我在A new micro clearfix hack - Nicholas Gallagher

之后了解到这一点

答案 1 :(得分:0)

你不是在找这样的东西吗?

strong, b { 
    font-weight: bold;
    display:block;
    clear: both;
}

http://jsfiddle.net/seany789/dxQBy/4/