我已經嘗試了我可能想到的所有事情,並且查看了文檔/ tutorials/github自述文件的每一處。中心水平形式的twitter引導
我正在構建一個簡單的使用簡單窗體和twitter引導的rails應用程序。
我想我的形式是在頁面的中心,我可以得到場在我的引導css文件中添加此移動到中心:
body {
text-align: center;
}
導致:
無論我做什麼,我都無法將標籤「control-label
」與中心對齊。我曾嘗試在其他許多方面使用id
。
這裏是我的表單代碼:
<%= simple_form_for @message, :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :phone, :input_html => { :maxlength => 10 }, :label_html => { :class => 'control-label' } %>
<%= f.input :message %>
<div class="form-actions" id="sendbtn">
<%= f.button :submit, :class => 'btn-primary' %>
</div>
<% end %>
和生成的html:
<div class="container">
<div class="page-header">
<h1 id="pagetitle">New Message</h1>
</div>
<form id="new_message" class="simple_form form-horizontal" novalidate="novalidate" method="post" action="/messages" accept-charset="UTF-8">
<div style="margin:0;padding:0;display:inline">
<div class="control-group tel optional">
<label class="tel optional control-label control-label" for="message_phone">Phone</label>
<div class="controls">
<input id="message_phone" class="string tel optional" type="tel" size="50" name="message[phone]" maxlength="10">
</div>
</div>
<div class="control-group text optional">
<label class="text optional control-label" for="message_message">Message</label>
<div class="controls">
<textarea id="message_message" class="text optional" rows="20" name="message[message]" cols="40"></textarea>
</div>
</div>
<div id="sendbtn" class="form-actions">
<input class="btn btn-primary" type="submit" value="Create Message" name="commit">
</div>
</form>
</div>
請任何人都可以在這裏提供一些支持?
抱歉,我對這一切都有點新鮮感,我不太確定如何實現這一點。我在jsfiddle中看到了這個例子,但我不確定我需要添加到我的'_form.html.erb'中以生成適當的標記,這將允許我以這種方式添加css。 – ohayon
我想,更具體地說,你是什麼意思的「聲明在我的窗體內嵌塊'的容器div? – ohayon
編輯!!!謝謝!!!我把一個div圍繞我的軌道形式標籤,它的工作! – ohayon