网友俱乐部 » » HTML/CSS教程 » 无序列表UL鼠标激活显示背景色

2008-4-25 07:45 lonjew
无序列表UL鼠标激活显示背景色

 鼠标激活显示背景色,我们该如何编写这样的代码呢?我们来整理一下思路:把a里的部分设置成一个块元素,然后定义鼠标放上后的样式。CSS1中:hover只对a元素起作用,CSS2中:hover应用于所有元素.而IE7也没同样没有支持CSS2中的这个标准。所以为了适应所有浏览器还是要定义在a中。
我们看下面的xhtml代码:  

  
    CSS Web Designxhtml css div css - webjx.com www.webjx.com
    CSS Web Designxhtml css div css - webjx.com www.webjx.com
  
  
我们对上面的xhtml编写css代码:  
#links ul {
        list-style-type: none;
        width: 280px;
}
#links li {
        border: 1px dotted #06f;
        border-width: 1px 0;
        margin-bottom: 16px;
}

#links li a {
        color: #00f;
        display: block;
        font: bold 120% Arial, Helvetica, sans-serif;
        padding: 8px;
        text-decoration: none;
}
* html #links li a {  /* make hover effect work in IE */
    width: 280px;
}
#links li a:hover {
        background: #f0f0f0; color:#036;
}

#links a em {
        color: #666;
        display: block;
        font: normal 85% Verdana, Helvetica, sans-serif;
        line-height: 125%;
}

#links a span {
        color: #999;
        font: normal 70% Verdana, Helvetica, sans-serif;
        line-height: 150%;
}  
  [b]    [/b]

页: [1]


Powered by Discuz! Archiver 5.5.0  © 2001-2006 Comsenz Inc.