Last active
August 29, 2015 14:03
-
-
Save turboMaCk/1c1a64d694a8faa3832a to your computer and use it in GitHub Desktop.
This file contains 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
body { | |
background: #ccc | |
} | |
.quote { | |
position: relative; | |
display: block; | |
padding: 40px; | |
background: #fff; | |
border-radius: 3px; | |
quotes: none; | |
} | |
.quote:after { | |
content: ''; | |
position: absolute; | |
bottom: -25px; | |
right: 50px; | |
display: block; | |
width: 0; | |
height: 0; | |
border-right: 30px solid transparent; | |
border-top: 25px solid #fff; | |
} |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<blockquote class="quote"> | |
Someone said this | |
</blockquote> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment