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.
我想使用样式而不是通过 CSS 将标签居中。
<label style="color:Red; vertical-align:middle;"> TEXT </label>
不起作用,有没有人有任何想法谢谢
你可以像这样轻松地做到这一点......
<div style="text-align:center;"> <label style="color:Red;">TEXT</label> </div>
这也使用了 CSS,但是在同一个 HTML 文件中,没有 CSS,你不能做你想做的事情。希望这会对你有所帮助