ACTUALIZAR
Aquí hay una combinación SCSS para generar el trazo: http://codepen.io/pixelass/pen/gbGZYL
/// Stroke font-character
/// @param {Integer} $stroke - Stroke width
/// @param {Color} $color - Stroke color
/// @return {List} - text-shadow list
@function stroke($stroke, $color) {
$shadow: ();
$from: $stroke*-1;
@for $i from $from through $stroke {
@for $j from $from through $stroke {
$shadow: append($shadow, $i*1px $j*1px 0 $color, comma);
}
}
@return $shadow;
}
/// Stroke font-character
/// @param {Integer} $stroke - Stroke width
/// @param {Color} $color - Stroke color
/// @return {Style} - text-shadow
@mixin stroke($stroke, $color) {
text-shadow: stroke($stroke, $color);
}
SÍ vieja pregunta ... con respuestas aceptadas (y buenas) ...
PERO ... En caso de que alguien necesite esto y odie escribir código ...
ESTE es un borde negro de 2px con soporte para CrossBrowser (no IE). Necesitaba esto para las fuentes @fontface, por lo que necesitaba ser más limpio que las respuestas vistas anteriormente ... Aprovecho cada lado en píxeles para asegurarme de que no haya (casi) espacios en blanco " fuentes difusas "(handrawn o similar). Se podrían agregar subpíxeles (0.5px) pero no lo necesito.
¿Código largo solo para el borde? ...¡¡¡SI!!!
text-shadow: 1px 1px 0 #000,
-1px 1px 0 #000,
1px -1px 0 #000,
-1px -1px 0 #000,
0px 1px 0 #000,
0px -1px 0 #000,
-1px 0px 0 #000,
1px 0px 0 #000,
2px 2px 0 #000,
-2px 2px 0 #000,
2px -2px 0 #000,
-2px -2px 0 #000,
0px 2px 0 #000,
0px -2px 0 #000,
-2px 0px 0 #000,
2px 0px 0 #000,
1px 2px 0 #000,
-1px 2px 0 #000,
1px -2px 0 #000,
-1px -2px 0 #000,
2px 1px 0 #000,
-2px 1px 0 #000,
2px -1px 0 #000,
-2px -1px 0 #000;