Tema: Rotar Texto
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/05/2006, 17:31
Davhira
 
Fecha de Ingreso: mayo-2005
Mensajes: 63
Antigüedad: 18 años, 11 meses
Puntos: 1
Hola, despues de tiempo de busqueda e intento tras intento encontre la solucion

<html>
<head>
<title>Untitled</title>

</head>
<body>
<form name="formulario">
<table border="2">
<tr>

<td>prueba</td>

<td><b style="position:'absolute';filter='progid:DXImageT ransform.Microsoft.BasicImage(rotation=3)'">prueba </b></td>

<td>prueba</td>
<td>prueba</td>
</tr>
<tr>
<td>prueba</td>
<td>prueba</td>
<td>prueba</td>
<td>prueba</td>
</tr>
</table>
</form>
</body>
</html>

Esta fue la primera solucion que encontre rotando el texto, pero lo malo es que era necesario usar posicion absoluta y eso movia espantoso el texto, teni que encontrar una forma de no usar posicion absoluta

<html>
<head>
<title>Untitled</title>

</head>
<body>
<form name="formulario">
<table border="2">
<tr>

<td>prueba</td>

<td style="layout-flow:'vertical-ideographic'; filter='progid:DXImageTransform.Microsoft.BasicIma ge(rotation=2)'">prueba</td>

<td>prueba</td>
<td>prueba</td>
</tr>
<tr>
<td>prueba</td>
<td>prueba</td>
<td>prueba</td>
<td>prueba</td>
</tr>
</table>
</form>
</body>
</html>

asi no se usa posicion absoluta y se respeta la posicion, espero le sirva a alguien