Skip to content

Instantly share code, notes, and snippets.

@jamesrmoro
Created June 8, 2023 15:41
Show Gist options
  • Save jamesrmoro/8c0bf1544bc88b50b6b8dd7fd02f2f43 to your computer and use it in GitHub Desktop.
Save jamesrmoro/8c0bf1544bc88b50b6b8dd7fd02f2f43 to your computer and use it in GitHub Desktop.
Background Clip: Texturas em Textos com CSS
.seu-elemento-de-texto {
background-image: url(caminho/para/sua-textura.jpg);
background-clip: text;
-webkit-text-fill-color: transparent; /* Para navegadores baseados em WebKit */
background-color: #f1f1f1; /* Fallback para navegadores que não suportam background-clip */
padding: 10px;
font-size: 24px;
font-weight: bold;
font-family: Arial, sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment