我正在尝试设置导航栏标签的样式。我有两段代码可以工作,但我需要对各个选项卡进行更多控制,但不知道该怎么做。
这些选项卡位于标题下方和最右侧。而且我正在尝试仅将第一个选项卡的左下角舍入。下面的两个代码片段都围绕导航栏中每个选项卡的左下角。
我想找出正确的代码,让我可以控制每个选项卡并允许我单独设置每个选项卡的样式。下面的 2 个片段让我走到了一半,只是不确定哪个更好改进或添加什么。
.custom .menu, .custom .menu a, .custom .menu li ul {
-moz-border-radius-bottomleft:.5em; font-weight:bold;
-webkit-border-bottom-left-radius:.5em; font-weight:bold;
-moz-border-radius-bottomright:.0em;
-webkit-border-bottom-right-radius:.0em;}
或这个:
/* Remove the border from the far left. */
ul.menu{border-left:0;}
/* Add the left border back in. If you change the color of the nav border in the WordPress admin panel, you will also have to manually change the left border color below. */
ul.menu li.tab-1 a{
border-left:1px solid #CCC;
-moz-border-radius-topleft:.5em;
-webkit-border-top-left-radius:.5em;}
/* This creates the rounded borders. */
ul.menu li.tab a{
-moz-border-radius-bottomleft:.5em; font-weight:bold;
-webkit-border-bottom-left-radius:.5em; font-weight:bold;
-moz-border-radius-topright:.0em;
-webkit-border-top-right-radius:.0em;}
谢谢你的帮助