Skip to content

Instantly share code, notes, and snippets.

@cnichols-git
Created July 16, 2014 03:01
Show Gist options
  • Save cnichols-git/63b2ecf5722d950a1552 to your computer and use it in GitHub Desktop.
Save cnichols-git/63b2ecf5722d950a1552 to your computer and use it in GitHub Desktop.
CSS Quote Bubble
<div class="sidebar">
<div class="widget-title">
<h4>This is the title</h4>
</div
</div>
.sidebar {
background: rgb(125,125,125);
}
.sidebar h4.widget-title::after {
content: " ";
width: 0;
height: 0;
border-left: 12px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid rgb(125,125,125);
position: relative;
top: 43px;
left: 146px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment