两种大引号
引号样式1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
@import url(https://fonts.googleapis.com/css?family=Roboto); blockquote { color:#888; background-color: #eae6f3; border-left: 1em solid #5236a0; padding: 1em 1.5em 1em 1.5em; position: relative; font-family: 'Roboto', sans-serif; line-height: 150%; text-indent: 35px; } blockquote:before { color: #392570; content: "\201C"; font-size: 5em; position:absolute; left:-15px; top: 40px; line-height: 0.1em; } blockquote:after { color: #392570; content: "\201D"; font-size: 5em; position:absolute; right:15px; bottom: 0em; line-height: 0.1em; } |
引号样式2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans); blockquote { color:#888; background-color: #eae6f3; border-left: 1em solid #5236a0; padding: 1em 1.5em 1em 1.5em; position: relative; font-family: 'Open Sans', sans-serif; line-height: 150%; text-indent: 35px; } blockquote:before { color: #392570; content: "\201C"; font-size: 5em; position:absolute; left:-15px; top: 35px; line-height: 0.1em; } blockquote:after { color: #392570; content: "\201D"; font-size: 5em; position:absolute; right:15px; bottom: 0em; line-height: 0.1em; } |
总计 0 评论