2017-04-25 138 views

回答

1

請嘗試以下變化:

.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; 
} 
+0

完美,謝謝!看起來我試圖使用塊而不是內聯塊,這是我的問題。 – BrandonD