| |||
problemas con tablas hola tengo una index hecho y quiero que cuando el texto llegue al final de la tabla esta me saque o lo ponga con scroll y me da el error que cuando llega abajo la tabla se sigue anchando no hay una forma de ponerla que aga como los layers y me ponga un scroll??? |
| |||
Respuesta: problemas con tablas no me sale men e intentado pero nada puedes corregirme este codigo y si le hace falta un css dime eso por que no se nada de eso estoy en aprendisage jijijiji
Código:
<!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>noticias</title> <style type="text/css"> <!-- body { background-image: url(images/back001.jpg); } </style></head> <body> <table width="674" height="737" border="0"> <tr> <td style="overflow:auto"> <?PHP { $number = "10"; $category = "1"; include("datos/noticias.php"); } ?> </td> </tr> </table> </body> </html> Última edición por Dr_Chichi; 23/10/2009 a las 00:05 Razón: ya resolvi |
| ||||
Respuesta: problemas con tablas Hola: Dr_Chichi, sería conveniente que explicaras como lo has solucionado, así si alguien se encuentra con el mismo problema que tú o similar podría solucionarlo con tu ayuda. Saludos. |
| |||
Respuesta: problemas con tablas resolvi de la siguiente manera al codigo el agregue lo siguiente puse en rojo lo que le agregue
Código:
y le ise un css que era de la siguiente forma<!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> <link href="radio.css" rel="stylesheet" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>noticias</title> <style type="text/css"> <!-- body { background-image: url(images/back001.jpg); } </style></head> <body> <table width="674" height="737" border="0"> <tr> <td style="overflow:auto"> <div class="messagesnot"> <?PHP { $number = "10"; $category = "1"; include("datos/noticias.php"); } ?> </div> </td> </tr> </table> </body> </html>
Código:
y ya hay quedo como queria .messagesnot { text-align: left; height: 735px; width: 672px; overflow: scroll; position: static; visibility: visible; } |