发布网友 发布时间:2022-04-21 17:36
共4个回答
热心网友 时间:2022-04-20 11:34
加个空<a>标签,定义a:hover{text-decoration:underline;}属性
例
<!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>
.text1 { color:green; }
.text1 a:link,.text1 a:visited{ text-decoration:none; color:green;}
.text1 a:hover{ text-decoration:underline; color:green;}
</style>
</head>
<body>
<div class="text1">我说的是文字本身有css样式,<a href="#">怎样再给文字加个样式让文字出现的效果是,当鼠标经过文字的时候,文字出现下划线,文字本来是没有下划线的</a></div>
</body>
</html>
热心网友 时间:2022-04-20 12:52
你可以在游戏设置那有``
热心网友 时间:2022-04-20 14:26
你那个样式的名字(假定为aa)
a.aa:hover{text-decoration:underline;}
热心网友 时间:2022-04-20 16:18
a:hover{text-decoration:underline}