Skip to content

Instantly share code, notes, and snippets.

Created September 14, 2013 23:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/6566520 to your computer and use it in GitHub Desktop.
Save anonymous/6566520 to your computer and use it in GitHub Desktop.
.blue {
height: 200px;
width: 100%;
background: #293e81;
}
.white {
height: 200px;
width: 100%;
background: #F7F7F7
}
.red {
height: 200px;
width: 100%;
background: #CC2A46;
}
.black {
height: 200px;
width: 100%;
background: #333
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div class="blue"></div>
<div class="white"></div>
<div class="red"></div>
<div class="black"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment