发布网友 发布时间:2022-04-23 10:13
共2个回答
热心网友 时间:2022-04-06 12:33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{margin:0;padding:0;}
ul{list-style-type: none;}
ul>li{float:left;margin-right: 10px;position: relative;width:100px;}
li>span{display: none;position: absolute;top: 20px;background: #ccc;}
li:hover >span{display: block;}
</style>
</head>
<body>
<ul>
<li>提示<span>任务中心</span></li>
<li>提示<span>通知</span></li>
<li>提示<span>装扮</span></li>
</ul>
</body>
</html>
热心网友 时间:2022-04-06 13:51
建议你看一下这个教程,很详细的解释也有代码:http://www.w3school.com.cn/cssref/selector_hover.asp追问这个我会用,它只能改变该对象样式属性,不可以用来作用其它对象吧?
追答a标签..