Reputation: 1664
I need to make stretchy columns and rows with borders to the lefts and rights of each column. If one column's row stretches more, the other columns in that row should stretch. I found liquid 2 column layout and 3 column layouts, but those are divs. I searched phpbb forums and found that their forums are made out of "ul" "li" tags, then there's always the table method... easiest way to go.
Which method to go for? SEO friendly (incase any of these choices may be opinionated).
Upvotes: 0
Views: 190
Reputation: 103368
I would use a HTML table
for a forum.
It's tabular data, so a HTML table
is the correct element to use.
Remember, HTML tables aren't evil, they just shouldn't be used for layout.
Upvotes: 4