Saltar al contenido

cómo deshacerse del subrayado en los enlaces ejemplo de código CSS

Ejemplo 1: eliminar el subrayado del enlace css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }

Ejemplo 2: cómo eliminar el subrayado del enlace en html

<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a href="" style="text-decoration: none;">Team</a>
   </p>
</body>

Ejemplo 3: cómo eliminar el subrayado del enlace

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>

Ejemplo 4: eliminar el subrayado del enlace css

<!-- HTML code to remove underline 
	from anchor tag -->
<!DOCTYPE html>
<html>
   <head>
      <title>text-decoration property</title>

      <!-- text-decoration property to remove 
         underline from anchor tag -->
      <style>
         a:link {
            text-decoration: underline;
         }
         a:hover {
            text-decoration: none;
         }
      </style>
   </head>

   <body style="text-align: center">
      <a id="GFG" href="#"> Hello Programmers! </a>
   </body>
</html>

Ejemplo 5: cómo deshacerse del subrayado de los enlaces en css

a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)


Tags :

Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *