Skip to content

Instantly share code, notes, and snippets.

@thequbit
Created March 24, 2015 14:20
Show Gist options
  • Save thequbit/99f66ac51bbf478d56c0 to your computer and use it in GitHub Desktop.
Save thequbit/99f66ac51bbf478d56c0 to your computer and use it in GitHub Desktop.
<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