如何以简单的形式修改font-size

时间:2016-08-12 18:03:58

标签: html css ruby simple-form

<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的标签,但似乎无法弄清楚如何以简单的形式更改样式。

1 个答案:

答案 0 :(得分:1)

spanclass一起使用,并使用该类设置font-size

<span class="largeFont" ><%= f.label :_destroy, "Remove Note"  %></span>

CSS:

.largeFont
{
   font-size : 30px;
}

class mobile_note_form2移除div。它导致所有元素都有font-size : 30px