删除href属性中的访问样式

时间:2016-09-05 13:16:35

标签: html

我想知道是否可以更改内联访问样式,而不是CSS,类似于

<a style="text-decoration:none;" >

1 个答案:

答案 0 :(得分:0)

不,这是不可能的,唯一的选择是使用<style>标签:

&#13;
&#13;
<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;
&#13;
&#13;