Created
April 22, 2014 19:36
-
-
Save nbatalla03/11191627 to your computer and use it in GitHub Desktop.
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
<!-- 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