display :table-cell does not work in ie 7?
here display-table does not work in ie7. is there any way apply the same style开发者_如何学Python in ie7
Please help me out.
If you desperately need functionality that can only be provided by display: table-cell
in IE7, you have two choices:
- Use a real
<table>
and suffer unsemantic HTML. - Use JavaScript for IE7 (and lower) to fix it: http://tanalin.com/en/projects/display-table-htc/
精彩评论