我想在可选按钮内集中对齐文本。我试过了:
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>
答案 0 :(得分:0)
你需要将中心拼写为“中心”。
input {
text-align: center;
}
&#13;
<input value="blah blah">
&#13;