我想知道是否可以更改内联访问样式,而不是CSS,类似于
<a style="text-decoration:none;" >
答案 0 :(得分:0)
不,这是不可能的,唯一的选择是使用<style>
标签:
<html>
<head>
<style>
a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<a href="#">Link</a>
<!-- Or you could use Javascript-->
<a href="#" onmouseover = "this.style.textDecoration = 'none'">Link 2</a>
</body>
</html>
&#13;