向右浮动菜单栏的最后一项

时间:2017-01-25 15:45:03

标签: html css wordpress menu

我正在尝试将菜单栏like here中的最后一项放回我的wordpress中,但我无法管理它以使其正常工作。有没有实用的方法来做到这一点?

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

1 个答案:

答案 0 :(得分: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;
}