Last active
January 2, 2016 10:18
-
-
Save slant/8288632 to your computer and use it in GitHub Desktop.
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
<!doctype html> | |
<html> | |
<head> | |
<style type="text/css"> | |
body, html { | |
font-family: helvetica; | |
} | |
p:before { | |
border-bottom: 1px solid gray; | |
color: gray; | |
content: "test before"; | |
display: block; | |
font-size: 10px; | |
margin-bottom: 6px; | |
padding-bottom: 4px; | |
} | |
p:after { | |
border-top: 1px solid gray; | |
color: gray; | |
color: gray; | |
content: "test after"; | |
display: block; | |
font-size: 10px; | |
margin-top: 6px; | |
padding-top: 4px; | |
} | |
</style> | |
<script> | |
</script> | |
</head> | |
<body> | |
<p>Test</p> | |
<p>Another test</p> | |
<p></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment