Since this doesn't work in IE 6
What does? Don't tell me to use span because I would prefer to use DIV. Can anyone verify if display: table-cell; works in IE 7?Code:display: table-cell;
Since this doesn't work in IE 6
What does? Don't tell me to use span because I would prefer to use DIV. Can anyone verify if display: table-cell; works in IE 7?Code:display: table-cell;
According to QuirksMode.org, no, IE doesn't support display:table/table-cell/table-row.
I'd recommend you just use floated <div /> tags for layout. However, if you want to display tabular data (like timetables, calendars, schedules, spreadsheets, and the like), don't be afraid to use tables.
Last edited by Cubeform; 06-16-2007 at 11:32 PM.
CUBEFORM
XHTML | CSS | PHP | JavaScript
THIS WEEK
Actually I was thinking of using a table to get the 3 column layout setup, but I was afraid my templates rating would be degraded because of it.