25 of 313 menu

Propiedad text-stroke

La propiedad text-stroke establece el color y el grosor del contorno de los caracteres de texto o su trazo. Como valor, la propiedad debe establecer el grosor del trazo y, separado por un espacio, el color del trazo.

Sintaxis

selector { text-stroke: grosor-del-trazo y su-color; }

Ejemplo básico

Contorno de texto simple:

<div class="stroked-text"> Lorem ipsum dolor sit amet </div> .stroked-text { font-size: 48px; font-weight: bold; -webkit-text-stroke: 2px red; text-stroke: 2px red; }

:

Solo contorno

Ahora hagamos que el color del texto coincida con el color de fondo (en nuestro caso, blanco). Como resultado, solo quedará el contorno:

<div class="stroked-text"> Lorem ipsum dolor sit amet </div> .stroked-text { font-size: 48px; font-weight: bold; color: white; -webkit-text-stroke: 2px black; text-stroke: 2px black; }

:

Contorno con gradiente

Hagamos un contorno degradado usando la propiedad background-clip:

<div class="gradient-stroke"> Lorem ipsum dolor sit amet </div> .gradient-stroke { font-size: 42px; font-weight: bold; background: linear-gradient(to right, #ff8a00, #e52e71); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-stroke: 1px #333; text-stroke: 1px #333; }

:

Contorno múltiple

Efecto de doble contorno usando text-shadow:

<div class="double-stroke"> Lorem ipsum dolor sit amet </div> .double-stroke { font-size: 40px; color: white; -webkit-text-stroke: 3px #000; text-stroke: 3px #000; text-shadow: 0 0 5px #000, 0 0 10px #000; }

:

Contorno animado

Añadamos una animación que cambie el contorno:

<div class="animated-stroke"> Lorem ipsum dolor sit amet </div> .animated-stroke { font-size: 38px; color: white; -webkit-text-stroke: 1px #ff0000; text-stroke: 1px #ff0000; animation: pulse 2s infinite; } @keyframes pulse { 0% { -webkit-text-stroke: 1px #ff0000; text-stroke: 1px #ff0000; } 50% { -webkit-text-stroke: 3px #ff0000; text-stroke: 3px #ff0000; } 100% { -webkit-text-stroke: 1px #ff0000; text-stroke: 1px #ff0000; } }

:

Ver también

Español
AfrikaansAzərbaycanБългарскиবাংলাБеларускаяČeštinaDanskDeutschΕλληνικάEnglishEestiSuomiFrançaisहिन्दीMagyarՀայերենIndonesiaItaliano日本語ქართულიҚазақ한국어КыргызчаLietuviųLatviešuМакедонскиMelayuမြန်မာNederlandsNorskPolskiPortuguêsRomânăРусскийසිංහලSlovenčinaSlovenščinaShqipСрпскиSrpskiSvenskaKiswahiliТоҷикӣไทยTürkmenTürkçeЎзбекOʻzbekTiếng Việt
Usamos cookies para el funcionamiento del sitio, análisis y personalización. El procesamiento de datos se realiza de acuerdo con la Política de privacidad.
aceptar todas configurar rechazar