【发布时间】:2013-11-30 21:56:04
【问题描述】:
我想更改导航背景颜色的不透明度,但它也更改了导航链接的不透明度。如何仅更改导航背景颜色的不透明度?
这是我的导航风格:
#navigation {
height: 60px;
width: auto;
margin: 0 0 20px 0;
background-color: black;
border-radius: 8px;
opacity: 0.7;
}
#navigation ul {
list-style-type: none;
}
#navigation li {
padding-left: 22px;
float: left;
}
#navigation a {
text-decoration: none;
display: inline-block;
float: left;
padding: 10px 20px 10px 20px;
color: white;
margin-top: 10px;
opacity: 1;
}
#navigation a:hover {
background-color: orange;
border-radius: 10px;
}
【问题讨论】: