Volver

Diseño y Recursos

Generador CSS para subrayado de enlaces

Genera CSS para subrayados animados en enlaces.

Categoría

Diseño y Recursos

Etiquetas

link hoverunderline animationCSSnavigation
Más herramientas de Diseño y Recursos
Entrada

Generador CSS para subrayado de enlaces

link hoverunderline animationCSSnavigation
Ejemplos rápidos
Salida

Generador de Underline Link CSS

.underline-link {
  position: relative;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

.underline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #38bdf8;
  transform-origin: left;
  transform: scaleX(0.15);
  transition: transform 0.3s ease;
}

.underline-link:hover::after {
  transform: scaleX(1);
}
En vivo Vista previa
Live canvas