Skip to content

Instantly share code, notes, and snippets.

@turboMaCk
Last active August 29, 2015 14:03
Show Gist options
  • Save turboMaCk/1c1a64d694a8faa3832a to your computer and use it in GitHub Desktop.
Save turboMaCk/1c1a64d694a8faa3832a to your computer and use it in GitHub Desktop.
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;
}
<!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