Ejemplo 1: contorno negro de texto css
/* Written for h4 tag, modify as required */
.black-outline{
-webkit-text-stroke: 1.11px black; /* stroke width and color */
color: rgb(255, 255, 255);
-webkit-font-smoothing: antialiased;
font-weight: bold;
}
Ejemplo 2: texto blanco de fuente html con borde negro
h1 {
color: yellow;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
<h1>Hello World</h1>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)