Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使标签与<h3>or<div>或,,,在同一行
<h3>
<div>
<h3 style="display: inline-block"> Reply to <label id="test">test</label></h3>
PS:可能值得考虑的是我的标签在里面<h3>
谢谢
当我在 jsFiddle 中运行 HTML 时,我没有看到标签有问题。
您可以使用该vertical-align物业。
vertical-align
vertical-align:baseline;
默认情况下,该label元素具有内联显示,因此您的代码片段应该可以正常工作。您是否包含其他一些 CSS 文件?或者像 Twitter Bootstrap 这样的 CSS 重置?label许多 CSS 重置声明元素的块显示。
label