之前的内联clearfix在CSS中

发布于 2024-12-16 19:19:49 字数 333 浏览 2 评论 0原文

我想在 标记开始之前自动换行。我会尝试一些事情,但不知道该怎么做。

我尝试过:

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

strong:before, b:before {clear:both;display:block;height:1%}
strong, b {font-weight: bolder;}

有什么解决方案吗

I would like to break the line automatically before a <strong> tag begins. I'd try a couple of things, but can't find out how to do so.

I tried:

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

and

strong:before, b:before {clear:both;display:block;height:1%}
strong, b {font-weight: bolder;}

Is there any solution for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

国产ˉ祖宗 2024-12-23 19:19:49

这里

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

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

几周前我了解到了这一点运行新的 microclearfix hack - Nicholas Gallagher

Here

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

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

I learned about this a few weeks ago after running across A new micro clearfix hack - Nicholas Gallagher

断肠人 2024-12-23 19:19:49

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

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

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

are you not looking for something like this?

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文