CSS在输入中集中对齐文本

时间:2015-03-12 16:24:39

标签: html css twitter-bootstrap

我想在可选按钮内集中对齐文本。我试过了:

text:align: center (..to the <input>)

..但它不起作用。

以下是我的html,我正在使用bootstrap按钮。

 <div class="btn-group" data-toggle="buttons">
      @foreach (var product in Model.Products)
      {
         <label class="btn btn-default productButton">
           <input style="text-align: center" type="radio" name="Products" id="@("product" + @product.Id)" autocomplete="off" checked> @product.Description
         </label>
      }
 </div>

1 个答案:

答案 0 :(得分:0)

你需要将中心拼写为“中心”。

&#13;
&#13;
input {
  text-align: center;
}
&#13;
<input value="blah blah">
&#13;
&#13;
&#13;