我有一个导航栏的 ul。在我的 CSS 中,我有一个悬停颜色过渡。这是代码:
HTML:
<body>
<ul>
<li class="sideBarButton">
<a href="www.google.com">
Home
</a>
</li>
<li class="sideBarButton">
<a href="www.google.com">
About
</a>
</li>
<li class="sideBarButton">
<a href="www.google.com">
Download
</a>
</li>
</ul> <!--- Navbar-->
</body>
CSS:
.sideBarButton {
font-family: Verdana;
font-size: 14px;
font-style: normal;
font-weight: bold;
font-variant: normal;
color: #000;
background-color: #000;
border: 2px none #FFF;
clear: none;
float: left;
height: auto;
list-style-type: none;
display: block;
width: 90px;
margin: 0px;
padding: 0px;
text-align: center;
text-align-last: center;
opacity: 1;
}
.sideBarButton a {
background-color: #000;
background-image: url(woodbutton.gif);
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
text-align: center;
text-decoration: none;
width: 90px;
display: block;
color: black;
}
.sideBarButton a:hover {
opacity: 0.7;
(抱歉代码有点乱,我一直想对它进行分类并清除不需要的部分。)按钮是图片。我有将两个第一个孩子和最后一个孩子选择器四舍五入的想法,但我认为我在(分层?)选择器中搞砸了,因为当我将一个类分配给完整的 ul 并设置一个 css选择器(例如:.ulClass .sideBarButton:first-child)它什么都不做。我错过了什么,我该如何解决?
提前致谢!(注意:忽略类名,这是一个顶部导航栏,而不是侧面,不管他们可能建议什么!)
编辑:为了澄清,我想环绕导航栏的所有四个角。