html – 为什么CSS中的“cursor:pointer”效果不起作用

前端之家收集整理的这篇文章主要介绍了html – 为什么CSS中的“cursor:pointer”效果不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
HTML
<div id="firstdiv">
          <div id="intro">
              <h1 id="name">YOU CHIA LAI</h1>
                  <ul>
                      <li class="about">I am a Master of <span>Architecture</span>  
                       candidate at Rice University.  
                      </li>
                      <li class="about">I am also interested in <span>photography</span> &        
                      <span>web design</span>.</li>
                      <li class="about">I wish you can know more <span>about</span> me.
                      </li>
                 </ul>
          </div>
      </div>

CSS:

#firstdiv{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:100%;
    width:100%;
    margin:auto;
    background:#E6E6E6;
    text-align:center;
    font-size:0;
    z-index:-2
}
.about>span{
    cursor:pointer;
    font-family:Eurofurence Light;
    padding:0 0 3px 0;
    color:#01DFA5;
}

是我的代码的一小部分.我设置光标:.about> span的指针,但是当鼠标悬停在< span>中的这些文本上时,光标不会变为指针模式.我想知道为什么它不工作.我真的是新的在html和css,这个问题可能是愚蠢的但plz帮助我.提前致谢.

解决方法

简单的答案是,您需要更改z-index,以便#firstdiv被考虑在其他div之上.
原文链接:https://www.f2er.com/html/227916.html

猜你在找的HTML相关文章