Created
March 24, 2015 14:20
-
-
Save thequbit/99f66ac51bbf478d56c0 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
<html> | |
<head> | |
<style> | |
body { | |
} | |
div.container { | |
width: 500px; | |
color white; | |
background-color: green; | |
} | |
span.left-thing { | |
width: 150px; | |
background-color: blue; | |
color: white; | |
} | |
span.right-thing { | |
width: 150px; | |
background-color: red; | |
color: white; | |
float: right; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<span class="left-thing">LEFT!</span> | |
<span class="right-thing">No, RIGH!</span> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment