Update IE.

This commit is contained in:
Rico Sta. Cruz 2013-01-09 05:01:01 +08:00
parent 1288ba807c
commit 54a2ab01bf
1 changed files with 8 additions and 5 deletions

13
ie.md
View File

@ -20,18 +20,18 @@ CSS properties:
Selectors/pseudos: ([polyfill: selectivizr][selectivizr]) Selectors/pseudos: ([polyfill: selectivizr][selectivizr])
- `+` _(adjacent)_ - `+` _(adjacent)_
- `:first-child` _(unless for static elements)_ - `:first-child` <sup>1</sup>
- `:focus` - `:focus`
- `:before`, `:after` _(single colon only)_ - `:before`, `:after` _(single colon only)_
CSS properties: CSS properties:
- `outline` - `outline`
- `display: inline-block` _(only for `<span>` and inlines)_ - `display: inline-block` <sup>2</sup>
- `display: table` - `display: table`
- `border-collapse`, `border-spacing`, `table-layout`, ...
- `whitespace: pre-wrap` - `whitespace: pre-wrap`
- `whitespace: pre-line` - `whitespace: pre-line`
- `border-collapse`, `border-spacing`, `table-layout`, ...
- `box-sizing` - `box-sizing`
Features: Features:
@ -143,9 +143,12 @@ Misc
<!--[if IE]> I'm IE <![endif]--> <!--[if IE]> I'm IE <![endif]-->
<!--[if !IE]> --> Not IE <!-- <![endif]--> <!--[if !IE]> --> Not IE <!-- <![endif]-->
### iPhone viewport Footnotes
---------
* "Static" = doesn't work for elements inserted via JS * (1) = doesn't work for elements inserted via JS
* (2) = IE6/7 can only support inline-block for elements that are naturally
inline, like span
[text-shadow]: https://github.com/heygrady/textshadow [text-shadow]: https://github.com/heygrady/textshadow
[ie7.js]: http://ie7-js.googlecode.com/svn/test/index.html [ie7.js]: http://ie7-js.googlecode.com/svn/test/index.html