下拉菜单边框

时间:2012-08-18 18:32:26

标签: css wordpress wordpress-theming

如何在二十一个主题wordpress中获取下拉菜单的底部圆角或父导航栏的子项目

#access ul ul a {
background: #F9F9F9;
border-bottom: 1px dotted #DDD;
 color: #444;
font-size: 13px;
font-weight: normal;
height: auto;
line-height: 1.4em;
padding: 10px 10px;
width: 168px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;`

如果我保持这样,那么所有下拉菜单项都会获得边框我只会为最后一项注册边框

1 个答案:

答案 0 :(得分:0)

使用:last-child选择器。以下是CSS的外观:

.menu-item:last-child a {
     border-bottom-right-radius: 10px;
     border-bottom-left-radius: 10px;
}

希望有所帮助!

相关问题