Ver Mensaje Individual
  #6 (permalink)  
Antiguo 16/12/2008, 18:05
otto1303
 
Fecha de Ingreso: noviembre-2006
Ubicación: Evergreen Street
Mensajes: 239
Antigüedad: 17 años, 6 meses
Puntos: 2
Respuesta: letras en forma vertical

Con CSS sí se puede hacer, mira este ejemplo:
Código:
<html> 
<head> 
<title>TEXTO VERTICAL.</title> 

<style>
<!--
.verticaltext {
writing-mode: tb-rl;
filter: fliph flipv;
}
-->
</style>

</head> 
<body>
<div class="verticaltext">Probando el texto vertical</div>

</body> 
</html>
si cambias el filtro así:
Código:
filter: flipv fliph;
queda para el otro lado.

Lo único es que solo funciona para IE y no para Opera ni Firefox.