Skip to content

Instantly share code, notes, and snippets.

@Hexrays
Created January 28, 2015 19:26
Show Gist options
  • Save Hexrays/73f98868f4b4833c0943 to your computer and use it in GitHub Desktop.
Save Hexrays/73f98868f4b4833c0943 to your computer and use it in GitHub Desktop.
Line Post title
<div class="container">
<h2>Lorem Ipsum</h2>
</div>
.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