Internet Explorer display: table-cell;

amrclutch1

New Member
Messages
15
Reaction score
0
Points
0
Since this doesn't work in IE 6

Code:
display: table-cell;

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?
 

Cubeform

New Member
Messages
339
Reaction score
0
Points
0
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:

amrclutch1

New Member
Messages
15
Reaction score
0
Points
0
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.
 
Top