diff --git a/_sass/2017/components/h3-section-list.scss b/_sass/2017/components/h3-section-list.scss
index 81cba15f2..9d86fbbbd 100644
--- a/_sass/2017/components/h3-section-list.scss
+++ b/_sass/2017/components/h3-section-list.scss
@@ -54,6 +54,10 @@
& > .h3-section {
width: 100%;
}
+
+ & > .h3-section + .h3-section {
+ margin-top: 16px;
+ }
}
/*
diff --git a/ie.md b/ie.md
index 48d9c2c7d..76726b32c 100644
--- a/ie.md
+++ b/ie.md
@@ -1,45 +1,52 @@
---
title: Internet Explorer
category: HTML
+layout: 2017/sheet
+updated: 2017-09-20
---
-## CSS Selectors
+## Support table
+{: .-one-column}
-| Feature | IE6 | 7 | 8 | 9 | 10 |
-| ---------------------------------------------------------- | - | - | - | - | -- |
-| `>` _(descendant)_ | | 7 ✓ | ✓ | ✓ | ✓ |
-| `[attr]` _(attribute)_ | | 7 ✓ | ✓ | ✓ | ✓ |
-| `.class1.class2` _(multiple classes)_ | | 7 ✓ | ✓ | ✓ | ✓ |
-| `~` _(sibling)_ | | 7 ✓ | ✓ | ✓ | ✓ |
-| `+` _(adjacent)_ | | 7 ✓ | ✓ | ✓ | ✓ |
-| ---------------------------------------------------------- | - | - | - | - | -- |
-| `:first-child` 1 | | | 8 ✓ | ✓ | ✓ |
-| `:focus` | | | 8 ✓ | ✓ | ✓ |
-| `:before` `:after` _(single colon only)_ | | | 8 ✓ | ✓ | ✓ |
-| `:lang` | | | 8 ✓ | ✓ | ✓ |
-| ---------------------------------------------------------- | - | - | - | - | -- |
-| `:first-of-type`, `:last-of-type` | | | | 9 ✓ | ✓ |
-| `:last-child` | | | | 9 ✓ | ✓ |
-| `:empty` | | | | 9 ✓ | ✓ |
-| `:enabled` `:disabled` `:checked` | | | | 9 ✓ | ✓ |
-| `:not()` | | | | 9 ✓ | ✓ |
-| `:nth-child()` `:nth-last-child()` | | | | 9 ✓ | ✓ |
-| `:nth-of-type()` `:nth-last-of-type()` `:only-of-type()` | | | | 9 ✓ | ✓ |
-| `:only-child()` | | | | 9 ✓ | ✓ |
-| `:target` | | | | 9 ✓ | ✓ |
-| `::selection` | | | | 9 ✓ | ✓ |
-| `:root` | | | | 9 ✓ | ✓ |
-{:.wide.greycode.ie}
+### CSS Selectors
-## CSS properties
+| Feature | IE6 | IE7 | IE8 | IE9 | IE10 |
+| ---------------------------------------------------------- | - | - | - | - | -- |
+| `>` _(descendant)_ | | 7 ✓ | ✓ | ✓ | ✓ |
+| `[attr]` _(attribute)_ | | 7 ✓ | ✓ | ✓ | ✓ |
+| `.class1.class2` _(multiple classes)_ | | 7 ✓ | ✓ | ✓ | ✓ |
+| `~` _(sibling)_ | | 7 ✓ | ✓ | ✓ | ✓ |
+| `+` _(adjacent)_ | | 7 ✓ | ✓ | ✓ | ✓ |
+| ---------------------------------------------------------- | - | - | - | - | -- |
+| `:first-child` \* | | | 8 ✓ | ✓ | ✓ |
+| `:focus` | | | 8 ✓ | ✓ | ✓ |
+| `:before` `:after` _(single colon only)_ | | | 8 ✓ | ✓ | ✓ |
+| `:lang` | | | 8 ✓ | ✓ | ✓ |
+| ---------------------------------------------------------- | - | - | - | - | -- |
+| `:first-of-type`, `:last-of-type` | | | | 9 ✓ | ✓ |
+| `:last-child` | | | | 9 ✓ | ✓ |
+| `:empty` | | | | 9 ✓ | ✓ |
+| `:enabled` `:disabled` `:checked` | | | | 9 ✓ | ✓ |
+| `:not()` | | | | 9 ✓ | ✓ |
+| `:nth-child()` `:nth-last-child()` | | | | 9 ✓ | ✓ |
+| `:nth-of-type()` `:nth-last-of-type()` `:only-of-type()` | | | | 9 ✓ | ✓ |
+| `:only-child()` | | | | 9 ✓ | ✓ |
+| `:target` | | | | 9 ✓ | ✓ |
+| `::selection` | | | | 9 ✓ | ✓ |
+| `:root` | | | | 9 ✓ | ✓ |
+{: .-headers}
-| Feature | IE6 | 7 | 8 | 9 | 10 | 11 |
+`first-child:` doesn't work for elements inserted via JS.
+
+### CSS properties
+
+| Feature | IE6 | IE7 | IE8 | IE9 | IE10 | IE11 |
| ---------------------------------------------------------- | - | - | - | - | -- | -- |
| `max-width` | | 7 ✓ | ✓ | ✓ | ✓ | ✓ |
| `position: fixed` | | 7 ✓ | ✓ | ✓ | ✓ | ✓ |
| ---------------------------------------------------------- | - | - | - | - | -- | -- |
| `outline` | | | 8 ✓ | ✓ | ✓ | ✓ |
-| `display: inline-block` 2 | | | 8 ✓ | ✓ | ✓ | ✓ |
+| `display: inline-block` \* | | | 8 ✓ | ✓ | ✓ | ✓ |
| `display: table` | | | 8 ✓ | ✓ | ✓ | ✓ |
| `border-collapse`, `border-spacing`, `table-layout`, ... | | | 8 ✓ | ✓ | ✓ | ✓ |
| `whitespace: pre-wrap` | | | 8 ✓ | ✓ | ✓ | ✓ |
@@ -62,11 +69,13 @@ category: HTML
| `text-shadow` — [polyfill][text-shadow] | | | | | 10 ✓ | ✓ |
| ---------------------------------------------------------- | - | - | - | - | -- | -- |
| `border-image` | | | | | | 11 ✓ |
-{:.wide.greycode.ie}
+{: .-headers}
-## Features
+`inline-block:` IE6/7 can only support inline-block for elements that are naturally inline, like span
-| Feature | IE6 | 7 | 8 | 9 | 10 | 11 |
+### Features
+
+| Feature | IE6 | IE7 | IE8 | IE9 | IE10 | IE11 |
| ---------------------------------------------------------- | - | - | - | - | -- | -- |
| PNG alpha transparency | | 7 ✓ | ✓ | ✓ | ✓ | ✓ |
| ---------------------------------------------------------- | - | - | - | - | -- | -- |
@@ -81,24 +90,22 @@ category: HTML
| HTML: `