Hola todos :
no es solamente con
height,
programeitor, también es con
width position:absolute writing-mode:tb-lr ...; y sí, es propietario de
IE. A partir de
5.5 se puede escribir
Código HTML:
{filter: progid:DXImageTransform.Microsoft.Glow(color=#ff00ff,strength=5); }
La opción de
n2h está muy buena. La estuve probando y no estoy seguro, pero creo que ésto debe funcionar en todos los navegadores
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<title> TEXTO CON BORDE.</title>
<style type="text/css">
body{font:normal normal 100%/200% "times new roman",serif}
#contenedor {position:relative; height:3em; background:#f00}
#conBorde {position:absolute; top:0px; margin:5px;}
font{font-family:"serif"; font-size:2em; font-weight:900;}
#conBorde font .txt {display:inline; position:relative; top:0; left:0;}
#conBorde font .arr {display:inline; -moz-user-select:none; position:absolute; top:-1px; left:-1px; color:#0f0;}
#conBorde font .aba {display:inline; -moz-user-select:none; position:absolute; top:1px; left:1px; color:#0f0;}
</style>
</head>
<body>
<h2>Texto con borde sin filtro glow.</h2>
<div id="contenedor">
<div id="conBorde">
<font>
<span class="arr">QWERTYUIOP</span>
<span class="aba">QWERTYUIOP</span>
<span class="txt">QWERTYUIOP</span>
QWERTYUIOP
</font>
</div>
</div>
</body>
</html>
saludos
furoya