首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

hover用来a标签

2013-11-05 
hover用于a标签本帖最后由 u012721633 于 2013-11-04 18:10:32 编辑head styleul li a:hover{ backgro

hover用于a标签
本帖最后由 u012721633 于 2013-11-04 18:10:32 编辑


<head>
 <style>
ul li a:hover{
 background-color: red;
}
 </style>
</head>

<ul>
 <li><a>文字</a></li>
</ul>



这样只有 文字 悬停时会变红 但是我要前面的小圆点也变红 有没有办法?
实际工作中背景是个图片 把背景图片向左移也行 就是要整个 li 都在背景中
但hover只对a有效 ,如果在li外面包一个<a>,好像会背景图片有文字的地方是白的 而且整个li会向右移
不想用脚本 ,有没有办法?

[解决办法]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
ul li a:hover{
     background-color: red;
 color:black;
    }
li:hover{
color:#F00;
}
 </style>
</head>

<body>
<ul>
 <li><a>文字</a></li>
</ul>
</body>
</html>

[解决办法]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<style>
ul li{
background:url(你那小点的图片) no-repeat left center; padding-left:10px; height:24px; line-height:24px;
}
ul li a:hover{
background-color: red;
}
</style>
<body>
<ul>
<li><a>文字</a></li>
</ul>
</body>
</html>

热点排行