Skip to content

Instantly share code, notes, and snippets.

@trafnar
Created June 16, 2011 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trafnar/1028458 to your computer and use it in GitHub Desktop.
Save trafnar/1028458 to your computer and use it in GitHub Desktop.
stacks
<!DOCTYPE html>
<html>
<head>
<title>Stacks</title>
<style type="text/css" media="screen">
*{margin:0; padding:0;}
body{font-size:18px;}
#container{background-color:Tomato; width:500px; margin:50px auto;}
#container #first_row{background-color:PaleGreen;}
#container #second_row{background-color:PowderBlue;}
#container #third_row{background-color:RoyalBlue;}
</style>
</head>
<body>
<div id="wrap">
<div id="container">
<div id="first_row">row one</div>
<div id="second_row">row two</div>
<div id="third_row">row three</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment