Skip to content

Instantly share code, notes, and snippets.

@stripthis
Created March 31, 2014 14:06
Show Gist options
  • Select an option

  • Save stripthis/9893011 to your computer and use it in GitHub Desktop.

Select an option

Save stripthis/9893011 to your computer and use it in GitHub Desktop.
.container {
background:red;
width:500px;
border:1px solid blue;
float:left;
}
.right,
.left {
padding:5px;
margin:5px;
}
.right {
width:228px;
float:left;
border:1px solid green;
background:yellow;
}
.left {
width:228px;
float:left;
border:1px solid yellow;
background:green;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="container">
<div>500px;</div>
<div class="left"> 250px </div>
<div class="right"> 250px </div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment