我正在嘗試將按鈕與井中的一些文本對齊。如何對齊井內元素?
這是最好的,我可以得到:按鈕
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="well"><h4>Download our 2016 Registration form today!<button type="btn" class="btn btn-default centered">Download Now!</button></h4>
</div>
</div>
</div>
</div>
CSS:
btn {
background-color: #FFF;
outline-color: #000;
}
通過以上我似乎無法得到H4和幹訓局之間的空間。 ..他們是如此緊張在一起,填充&保證金似乎沒有幫助。
此前我嘗試將h4和btn分別插入到col-md-8和col-md-6中,以便擁有自己的空間,但是我無法使其水平對齊。
然後,我在github上閱讀這些帖子https://github.com/twbs/bootstrap/issues/16933 .... https://github.com/twbs/bootstrap/issues/1446 ...聽起來像這個問題已經有一段時間了?
我正在使用一口井,因爲我想保持h4和btn靠近並處於紅色區域以吸引注意力。
任何幫助?
你想這隻與jQuery或CSS? – guradio
感謝Guradio,CSS或HTML ...我的jquery並不那麼熱衷。 – SaintPaddy