La cuestión que me invade es que tengo un div con una tabla de una fila y n columnas. El ancho del div es 500px y con n filas al poner texto en cada columna no me respeta el ancho del div contenedor y se sigue ensanchando.
A mi gustaría que al llegar al ancho del div los td se comportaran como elementos en línea y saltaran a la línea siguiente.
¿Esto se puede hacer con la propiedad display:inline aplicada a los td de la tabla??
Éste es el código
CSS:
Código:
HTML:<style type="text/css"> .contenedor {width:500px;background:#CCCCCC;} table.prueba td{display:inline;background:yellow;} </style>
Código:
Muchas gracias y un saludo a todos ;) <div class="contenedor"> <table class="prueba"> <tr> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> <td >asdfjkñadjsfhañdkfjhañd</td> </tr> </table> </div>