Menu
×
×
正确
<style>
/* unvisited link */
@(6) {text-decoration: none;}
/* visited link */
@(9) {text-decoration: none;}
/* mouse over link */
@(7) {text-decoration: underline;}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<a href="http://91xjr.com">This is a link</a>
</body>
<style>
/* unvisited link */
a:link {text-decoration: none;}
/* visited link */
a:visited {text-decoration: none;}
/* mouse over link */
a:hover {text-decoration: underline;}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<a href="http://91xjr.com">This is a link</a>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> /* unvisited link */w3exercise_input_no_0{text-decoration: none;} /* visited link */w3exercise_input_no_1{text-decoration: none;} /* mouse over link */w3exercise_input_no_2{text-decoration: underline;} </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <a href="http://91xjr.com">This is a link</a> </body> |