引导程序<pre></pre>内的中心按钮

时间:2013-06-13 00:55:18

标签: twitter-bootstrap pre

我已经做了很多搜索,甚至尝试修改.btn和<pre>的bootstrap css文件,但我无法弄清楚如何让这个东西居中

<pre style="margin: 0 auto 10px;max-:36px;">
Currentpassword
<button type="button" class="btn btn-warning" style="float: right;margin: 0 auto;">Button</button>
</pre>

我确信这很简单。我在下面发布了一张图片,感谢响应的任何人!

screenshot

1 个答案:

答案 0 :(得分:0)

假设您的意思是水平居中,可以将text-align:center添加到pre标记。

<pre style="text-align: center">
    <button class="btn">Button</button>
</pre>