我正在爲使用Bootstrap CSS的我的學院開發一個項目,並且我一直在修復一些對齊問題。我想要實現的是將徽標左對齊(獲得寬度的35%),並將社交插件和註冊&登錄按鈕向右對齊(獲取剩餘空間,即65%)。在css中修復對齊
我現在面臨的問題是一切都是垂直對齊!我已經編碼到目前爲止在下面提到。如果有人修復我的代碼中的錯誤,而不是提出新的錯誤,將不勝感激。
下面是HTML:
<div class="container">
<div id="topBar">
<div class="topLeft">Logo</div>
<div class="topRight">
<div class="socialPlugin">f t g</div>
<div class="signUpIn">Sign Up/In</div>
</div>
</div>
</div>
這裏是CSS:
#topBar {
width: 100%;
}
#topBar .topLeft {
width: 35%;
}
#topBar .topRight {
width: 65%;
}
#topBar .topRight .socialPlugin {
float: left;
}
#topBar. topRighht .signUpIn {
float: right;
}
謝謝
,你爲什麼和引導困擾,如果你不打算使用的電網和其他佈局組件提供? – isherwood
你真的要求某人爲你完成Bootstrap集成到你的代碼中嗎?您是否閱讀過Bootstrap的正確類文檔? - http://getbootstrap.com/css/#grid-intro – Lee
我使用引導程序,因爲我希望所有事情都能做出響應@isherwood –