Ngôn ngữ CSS - Xóa gạch chân từ hyperlink

Xóa gạch chân từ hyperlink

<!DOCTYPE html>
<html>
<head>
<style>
a {
  text-decoration: none;
}
</style>
</head>
<body>

<h1>Using text-decoration: none</h1>

<p>A link with no underline: <a href="https://www.w3schools.com">W3Schools.com</a></p>

</body>
</html>

Xem ví dụ