-3
對以下bigcommerce主題進行調整:https://cornerstone-light-demo.mybigcommerce.com,我似乎無法獲得頂部導航(nav.navuser)以居中對齊。我已經嘗試過各種文字對齊的組合:center;和margin:0 auto;無濟於事。試圖居中頂部導航欄
對以下bigcommerce主題進行調整:https://cornerstone-light-demo.mybigcommerce.com,我似乎無法獲得頂部導航(nav.navuser)以居中對齊。我已經嘗試過各種文字對齊的組合:center;和margin:0 auto;無濟於事。試圖居中頂部導航欄
請嘗試以下變化:
.navUser-section.navUser-section--alt {
/* add the following rule */
display: inline-block;
}
.navUser-section--alt {
/* change float:right to float: none */
float: none;
}
.navUser{
/* add the following rule */
text-align:center;
}
完美,謝謝!看起來我試圖使用塊而不是內聯塊,這是我的問題。 – BrandonD
在代碼中那麼多錯誤。提供更清潔的Jsfiddle代碼,我會解決它。 –