Hola
No soy un experto con dreamweaver, asi que acudo a vosotros.
¿Se pueden dibujar lineas horizontales y verticales en dreamweaver?
Gracias de antemano y saludos.
| |||
Y lo que es mas importante, piensa bien si necesitas lineas en tu sitio. Poner tablas o divs o hr gratuitamente puede hacer que en determinados navegadores se vean las cosas "raras" Un saludo Zerjillo |
| ||||
Este es un ejemplo para que lo puedas probar: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> <!-- .lineas { border-top-width: medium; border-right-width: medium; border-top-style: solid; border-right-style: solid; border-top-color: #FF0000; border-right-color: #0000FF; } #Layer1 { position:absolute; left:367px; top:104px; width:178px; height:46px; z-index:1; } --> </style> </head> <body> <div class="lineas" id="Layer1"></div> <table width="600" height="255" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="300" height="225" align="center" valign="middle"><table width="150" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="lineas"> </td> </tr> <tr> <td> </td> </tr> <tr> <td class="lineas"> </td> </tr> </table></td> <td width="300"> </td> </tr> <tr> <td width="300" height="30" align="center">TABLA</td> <td width="300" align="center">LAYER</td> </tr> </table> </body> </html> |
| |||
Respuesta: dibujar lineas en dreamweaver Es muy sencillo, asigna una clase al hr que quieres colocar com vertical Ejemplo; <hr class="LINEA"/> Luego formateas la clase de la siguiente manera: Tu juegas con las medidas: Ejemplo: .LINEA { height: 50px; width: 1px; } |