如何将一个Bootstrap文本框居中

21 浏览
0 Comments

如何将一个Bootstrap文本框居中

如何将Bootstrap的输入文本框居中?\n

 

\n如何将Bootstrap的输入文本框居中?在`

`标签内添加`class=\"text-center\"`即可实现居中对齐。示例如下:\n

 
                            

0
0 Comments

问题出现的原因是作者想要将一个Bootstrap文本框居中显示,但在当前的代码中并没有实现居中效果。

要解决这个问题,可以按照以下步骤进行操作:

1. 在form标签中添加class属性,值为"mx-auto",这样可以使整个表单居中对齐。

2. 将文本框所在的div标签的class属性的值改为"col-lg-6 mx-auto",以便使该div在大屏幕上居中显示。

3. 最后,将文本框的样式属性style中的"margin-bottom:15px;"改为"margin-bottom:0 auto;",以使文本框在垂直方向上居中显示。

修改后的代码如下:

<form action="#" method="post" class="akame-contact-form border-0 p-0 mx-auto">
    <div class="row">
        <div class="col-lg-6 mx-auto">
            <input type="text" name="username" class="form-control mb-30" placeholder="Your Name" required style="margin-bottom:0 auto;">
        </div>
    </div>
</form>

通过以上修改,可以实现将Bootstrap文本框居中显示的效果。

0
0 Comments

如何将Bootstrap文本框居中?

问题的出现原因是想要在使用Bootstrap文本框时实现文本框的居中效果。下面给出了解决这个问题的方法。

解决方法:

有多种方法可以实现文本框的居中效果,但最简单的方法是使用.text-center类。该类会将输入框的text-align属性设置为center。

示例代码如下所示:

.text-center {

text-align: center;

}

还可以阅读以下链接获取更多信息:

https://getbootstrap.com/docs/4.0/utilities/text/#text-alignment

Text-align class for inside a table

0