Skip to content

Instantly share code, notes, and snippets.

@nbatalla03
Created April 22, 2014 19:36
Show Gist options
  • Save nbatalla03/11191627 to your computer and use it in GitHub Desktop.
Save nbatalla03/11191627 to your computer and use it in GitHub Desktop.
<!-- Border w/o pseudo elements -->
<style>
.separator {
width: 100%;
height: 1px;
background: #000;
}
</style>
<div class="content">
Hello, world!
</div>
<div class="separator"></div>
<div class="content">
The world is mine!
</div>
<div class="separator"></div>
<!-- Border using pseudo elements -->
<style>
.content:after {
position: absolute;
bottom: 10px;
widith: 100%;
height: 1px;
background: #000;
}
</style>
<div class="content">
Hello, world!
</div>
<div class="content">
The world is mine!
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment