We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hr
1 parent bb55bab commit 46e3e05Copy full SHA for 46e3e05
CHANGELOG.md
@@ -1,6 +1,7 @@
1
=== HEAD
2
3
* Address inconsistent styling of b and strong.
4
+* Correct `hr` overflow in IE 8/9/10/11 and Edge 12.
5
6
=== 3.0.3 (March 30, 2015)
7
normalize.css
@@ -212,12 +212,15 @@ figure {
212
}
213
214
/**
215
- * Address differences between Firefox and other browsers.
+ * Address inconsistent styling of `hr`.
216
+ * 1. Correct `box-sizing` set to `border-box` in Firefox.
217
+ * 2. Correct `overflow` set to `hidden` in IE 8/9/10/11 and Edge 12.
218
*/
219
220
hr {
- box-sizing: content-box;
- height: 0;
221
+ box-sizing: content-box; /* 1 */
222
+ height: 0; /* 1 */
223
+ overflow: visible; /* 2 */
224
225
226
0 commit comments