将鼠标悬停在CSS中不会改变颜色属性

时间:2015-11-04 04:22:19

标签: html css

我在使用以下列表时遇到问题。问题是,当我将鼠标悬停在每个元素上时,文本颜色不会改变。

List

我的CSS代码应该改变颜色,但我不知道它为什么不是。

ul {
    padding: 0;
    list-style: none;
    background: white;
    opacity: 0.8;
    position: absolute;
    top: 18%;
    left: 1.6%;
    width: 96.5%;
    -webkit-box-shadow: 0 0 10px #aeaeae;
    -moz-box-shadow: 0 0 10px #aeaeae;
    box-shadow: 0 0 10px #aeaeae;
}

li {
    display: inline-block;
    text-align: center;
    width: 16.66685471%;
    padding-top: 0.8%;
    padding-bottom: 0.8%;
}

li a {
    text-decoration: none;
    color: black;
}

li:hover {
    text-decoration: none;
    background-color: #FFD800;
    color: white;
    display: inline-block;
    transition: 0.5s;
}

li a:hover {
    text-decoration: none;
    background-color: #FFD800;
    color: white;
}

玉文件:

          ul
                li
                    a(href="/Catalogo") CATÁLOGO                    
                li
                    a(href="/Noticias") NOTICIAS
                li
                    a(href="/Proyectos") PROYECTOS
                li
                    a(href="/Eventos") EVENTOS
                li
                    a(href="/Acerca") ACERCA DE
                li
                    a(href="/Contacto") CONTACTO

提前致谢。

1 个答案:

答案 0 :(得分:6)

li:hover a {
  text-decoration: none;
  background-color: #FFD800;
  color: white;
}