As you all know display: inline-block; doesn't work in IE6. Amazingly, display: table, table-row, table-cell also don't work. How can i po开发者_StackOverflow社区ssibly not use tables for a complex pages? What techniques are out there to get divs to behave like tables in IE6? In further readings/references would be appreciated.
While writing valid, semantic markup for layout on ie6 is a painful task, it is not impossible, here are some sources.
- How to make it work on ie6:a guide to the problems you'll face on ie6 and how to fix them.
- Quirksmode: Great guide about browser support for every css declaration.
- Cross-Browser inline-block. a rather long but very thorough
article on cross-browser
inline-block
implementation.
I hope you find them helpful.
精彩评论