Gallery

viernes, 27 de marzo de 2026

CSS - Imagen dentro de texto


Imágen dentro de etiqueta html H1

Ya sabemos que hacer... Copiar y pegar el código para hacerlo igual. (No olvides modificarlo a tu gusto)

CSS

h1{
  width: auto;
  color: transparent;
  font-family:fantasy;
  font-size: 10rem !important;
  font-weight: bold;

  text-transform: uppercase;

  background-image: url('de imagen');
  background-attachment: fixed;
  background-clip: text;

  -webkit-text-stroke: 1px rgb(111, 255, 0);
}


Documental de Hackers