2017-01-25 41 views
0

我想將菜單欄like here中的最後一個項目浮回到我的wordpress中,但我無法管理它使其工作。有沒有一種可行的方法來做到這一點?向右浮動菜單欄的最後一項

li:nth-last-child(1) { 
    float: none; 
    display: inline-block; 
} 
+0

'li:nth-​​last-child(1){float:right; }'沒有工作? –

回答

0

就在我頭頂,我會嘗試絕對定位。

li:nth-last-child(1) { 
position: absolute;  
top:0; 
right:0; 
display: inline-block; 
} 

你會發現絕對斷文檔流,所以實際上,給你的左上邊和左邊一些填充,或者如果你偷懶跟我一樣......我所做的:

li:nth-last-child(1) { 
position: absolute;  
top:0.5em; 
right:0.5em; 
display: inline-block; 
}