문제

I have a fairly complex table which is not displaying correctly in IE. For some reason it is ignoring the cell widths and making some cells bigger/smaller than I have specified.

It works fine in Safari and Firefox.

Is this a known issue and if so is there an easy fix?

도움이 되었습니까?

해결책

Since IE is displaying differently it may be due to default browser styles - have you tried using a reset stylesheet?

Alternatively, if you are setting all the widths on a table manually and don't want the table to adjust itself according to it's content, you can use:

table {
table-layout:fixed
}

That's about all I can suggest without seeing more code.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top