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.
如何使标签标签显示的文本变为粗体?
我想要同一个标签的两个标签,第二个直接在第一个下面。有什么好方法可以做到这一点?
如何选择标签文本的大小?
抱歉,如果其中一些是显而易见的,那么文档就没有那么有用了。
谢谢!
您可能可以创建一个在其中设置font-weightand的类,font-size然后在 f.label 的类中使用它。
font-weight
font-size
例如,在您的 CSS 中,您有:
.mylabel { font-weight: bold; font-size: 20px; }
然后在您的 html.erb 中,您将拥有刚刚在其中创建的 css 类,就像这样......
<%= f.label :first_name, class: 'mylabel' %>: