Skip to content

Commit 9c98cfa

Browse files
damianwajerroblarsen
authored andcommitted
Fix print styles for Internet Explorer 11 (#1799)
*:first-line pseudo-selector freezes window with print preview in IE 11 (tested on Windows 7 with IE 11.0.9600.17420 and 11.0.9600.18204, Windows 8.1 with IE 11.0.9600.16663, Windows 10 with IE 11.63.10586.0) To reproduce just open: http://demo.html5boilerplate.com/ or /dist/index.html and select Print > Print preview...
1 parent b0aad4f commit 9c98cfa

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

dist/css/main.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,10 @@ textarea {
213213
*:before,
214214
*:after,
215215
*:first-letter,
216-
*:first-line {
216+
p:first-line,
217+
div:first-line,
218+
blockquote:first-line,
219+
li:first-line {
217220
background: transparent !important;
218221
color: #000 !important; /* Black prints faster:
219222
http://www.sanbeiji.com/archives/953 */

src/css/main.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,10 @@ textarea {
205205
*:before,
206206
*:after,
207207
*:first-letter,
208-
*:first-line {
208+
p:first-line,
209+
div:first-line,
210+
blockquote:first-line,
211+
li:first-line {
209212
background: transparent !important;
210213
color: #000 !important; /* Black prints faster:
211214
http://www.sanbeiji.com/archives/953 */

0 commit comments

Comments
 (0)