<style>
.mobile_note_form2 {
font-size: 30px;
}
</style>
<div class="mobile_note_form2">
<fieldset>
<%= f.date_select :created_at %><br/><br/>
<%= f.text_area :note %><br/>
<%= f.check_box :_destroy %>
<%= f.label :_destroy, "Remove Note" %>
</fieldset>
</div>
我想制作&#34;删除笔记&#34;字体大小为30px的标签,但似乎无法弄清楚如何以简单的形式更改样式。
答案 0 :(得分:1)
将span
与class
一起使用,并使用该类设置font-size
。
<span class="largeFont" ><%= f.label :_destroy, "Remove Note" %></span>
CSS:
.largeFont
{
font-size : 30px;
}
从class mobile_note_form2
移除div
。它导致所有元素都有font-size : 30px