Created
March 31, 2014 22:25
-
-
Save cfjedimaster/9903768 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
<style> | |
.header2 #myHead { | |
display: block; | |
position: absolute; | |
left: 10px; | |
top: 20px; | |
} | |
.header2 #myHead:after { | |
content: "The headline"; | |
} | |
</style> | |
<section data-state="header2"> | |
<p>header2 example</p> | |
</section> | |
<style> | |
.header3 #myHead { | |
display: block; | |
position: absolute; | |
right: 0px; | |
top: 20px; | |
} | |
.header3 #myHead:after { | |
content: "Some other one, right aligned"; | |
} | |
</style> | |
<section data-state="header3"> | |
<p>header3 example</p> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment