JSfre here http://jsfiddle.net/s3king93/tXuLD/
尝试将单个类.home1设置为始终具有与a:hover相同的灰色背景。由于某种原因,即使我使用!重要,样式也不会覆盖。如果我带走a:hover部分,背景会显示,但文字却没有。
有人有什么想法吗?
<div class="list-1">
<ul class="list-style-1">
<li><a class="home1" href="">HOME</a></li>
<li><a href="">INFLUENCES</a></li>
<li><a href="">ABOUT ME</a></li>
<li><a href="">CLASSES</a></li>
<li><a href="">ANDREWS VIDEO BLOG</a></li>
<li><a href="">PHOTOGRAPHY</a></li>
</ul>
</div>
.list-1 {
padding:none;
float: right;
clear:right;
padding-right: 27px ;
}
.list-style-1 {
padding-top: 26px;
list-style-type: none;
font-family: "Bell Gothic Std Light";
font-size: 20px;
}
a {
display: inline-block;
width: 100%;
text-decoration: none;
padding: 1px;
}
a:link {
text-decoration:none;
color: #2A2A2A;
}
a:visited {
text-decoration:none;
color: #2A2A2A;
}
a:hover {
text-decoration:none;
color: #69E0F6;
background: #2A2A2A;
}
a:active {
text-decoration:none;
color: #69E0F6;
background: #2A2A2A;
}
.home1 a:link {
text-decoration:none;
color: #69E0F6;
background: #2A2A2A;
}
答案 0 :(得分:5)
你想:
a.home1 {
text-decoration:none;
color: #69E0F6;
background: #2A2A2A;
}
答案 1 :(得分:0)
.home1 a:link {
text-decoration:none;
color: #69E0F6;
background: #2A2A2A;
}
home1
位于<a>
代码上,尝试a.home1
或仅.home1
您可以混合使用.home1:hover
- .home1:active
如果你按照class="home1"
指明<li>
需要在{{1}}上的某个祖先元素上ajp15243指出。
答案 2 :(得分:0)
.home1 {
background: #2a2a2a !important;
color: #69E0F6 !important;
}
我的fiddle