diff options
| author | Patrick H. Lauke <[email protected]> | 2016-11-06 21:02:29 +0000 |
|---|---|---|
| committer | Patrick H. Lauke <[email protected]> | 2016-11-06 21:02:29 +0000 |
| commit | 2b7377395363287c178fcf9456b53f9d7c258ee3 (patch) | |
| tree | 70aaf934b87b0b7b49e7b1434683993aeb672322 | |
| parent | c8ec89a4968836062d0fa1158b9602713855292c (diff) | |
| download | bootstrap-2b7377395363287c178fcf9456b53f9d7c258ee3.tar.xz bootstrap-2b7377395363287c178fcf9456b53f9d7c258ee3.zip | |
Scope ::first-letter selector for print styles
`*::first-letter` causes problems in IE11 - only prints first page of a
multi-page document
| -rw-r--r-- | scss/_print.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scss/_print.scss b/scss/_print.scss index bd41328c2..5fe44c90a 100644 --- a/scss/_print.scss +++ b/scss/_print.scss @@ -13,7 +13,10 @@ *, *::before, *::after, - *::first-letter, + p::first-letter, + div::first-letter, + blockquote::first-letter, + li::first-letter, p::first-line, div::first-line, blockquote::first-line, |
