Created
December 30, 2020 14:52
-
-
Save miwebguy/e7367ee0f6ffe239167f72ace2a71350 to your computer and use it in GitHub Desktop.
NiceBlockQuotePattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
blockquote { | |
background: #f9f9f9; | |
border-left: 10px solid #ccc; | |
margin: 1.5em 10px; | |
padding: 0.5em 10px; | |
quotes: "\201C""\201D""\2018""\2019"; | |
} | |
blockquote:before { | |
color: #ccc; | |
content: open-quote; | |
font-size: 4em; | |
line-height: 0.1em; | |
margin-right: 0.25em; | |
vertical-align: -0.4em; | |
} | |
blockquote p { | |
display: inline; | |
} | |
</style> | |
<body> | |
<blockquote>Here is a nice Blockquote Pattern</blockquote> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment