gpt4 book ai didi

html - CSS 集中对齐输入中的文本

转载 作者:行者123 更新时间:2023-11-28 08:15:30 26 4
gpt4 key购买 nike

我想将可选择按钮内的文本居中对齐。我试过:

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>

最佳答案

您需要将 center 拼写为“center”。

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

关于html - CSS 集中对齐输入中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29015129/

26 4 0
文章推荐: jquery - 粘性标题跳转(Wordpress 主题)
文章推荐: ios - 如何创建 .ipa 文件以便用户可以像 AppStore 一样下载和安装?
文章推荐: javascript - JS 使用不同的填充
文章推荐: javascript - 隐藏 直到
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com