Created
July 16, 2014 03:01
-
-
Save cnichols-git/63b2ecf5722d950a1552 to your computer and use it in GitHub Desktop.
CSS Quote Bubble
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
<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