当我使用 simple_form_for 创建表单时,它会将标签放在输入下方,如下所示:
名字
_ _
但我希望他们成为:
名字_ _
如果我查看生成的 html,我会看到:
<div class="input string optional name">
<label class="string optional" for="name">date from</label>
<input class="string optional" id="name" name="anf[name]" size="50" type="text" value="">
</div>
但我不明白在风格中,有什么设置使它打破了界限;这是计算的样式:
color: rgb(51, 51, 51);
display: block;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 13px;
height: 65px;
line-height: 18px;
width: 940px;
无论如何,有没有办法自定义simple_form_for的这种外观?