Writing text in tables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello guys,
I have an index page, where i have divided it into 4 table , each having the
include in command.
Is there a way to fix the width of the tables in order not to grow when i
write text in frontpage. I am going to write news and each time the end of
the table comes, the table grows instead of changing line...

I suppose if i was doing the page through code this would not be a problem
since the width would always be the same...

Thanks in advance for the help
 
Even if your tables are set in px (rather than %) they will grow if your content lines exceed that size
- all table sizes are minimums and will expand based on content that can not wrap in the cells

--




| Hello guys,
| I have an index page, where i have divided it into 4 table , each having the
| include in command.
| Is there a way to fix the width of the tables in order not to grow when i
| write text in frontpage. I am going to write news and each time the end of
| the table comes, the table grows instead of changing line...
|
| I suppose if i was doing the page through code this would not be a problem
| since the width would always be the same...
|
| Thanks in advance for the help
 
Table cells will always grow to fit the content placed in it. Any long
words may force the table cell to grow, but short words should wrap at the
cell boundaries.
If the cells have no width specified, the cell widths will be (more or less)
proportional to the content in them - the cell with most content will be
wider than others in the same row.
If you hane not already done so, specify a width for each cell, either in
pixels (fixed width table) or as a percentage of the total table width (%s
must add up to 100).
 
Back
Top