“Eliminar subrayado del enlace CSS” Código de respuesta

Eliminar el estilo del enlace

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

Eliminar subrayado del enlace CSS

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

eliminar subrayado html

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

Cómo cambiar el color del hipervínculo en CSS

a {
  background-color: red;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
}
Yours Kindly

Cómo eliminar subrayado del enlace

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

Eliminar subrayado del enlace CSS

/* This is a class that can be applied to a link
   It is recommended to use padding to create size of button in this case
   Use a 1:2.5 ratio for the top and sides as given below
*/
.button {
	text-decoration: none;
  	padding: 15px 30px;
}
Wissam

Respuestas similares a “Eliminar subrayado del enlace CSS”

Preguntas similares a “Eliminar subrayado del enlace CSS”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código