Created
January 28, 2015 19:26
-
-
Save Hexrays/73f98868f4b4833c0943 to your computer and use it in GitHub Desktop.
Line Post title
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
<div class="container"> | |
<h2>Lorem Ipsum</h2> | |
</div> |
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
.container { | |
position : relative; | |
overflow : hidden; | |
width : 90%; | |
margin : 0 auto; | |
border : 2px solid lime; | |
} | |
h2 { | |
display : inline-block; | |
position : relative; | |
padding-right : 10px; | |
margin-bottom : 0; | |
&:after { | |
content : ''; | |
top : 10px; | |
position : absolute; | |
border-top : 2px dotted red; | |
width : 1000px; | |
left : 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment