Skip to content

Instantly share code, notes, and snippets.

@pvalencia
Created June 9, 2011 03:36
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 pvalencia/1015998 to your computer and use it in GitHub Desktop.
Save pvalencia/1015998 to your computer and use it in GitHub Desktop.
test
<html>
<head>
<style>
div {
width: 300px;
height: 200px;
float: left;
background-color: green;
border: 1px solid black;
margin: 2px;
}
div.asd {
width: 230px;
background-color: red;
}
div.asdf {
width: 130px;
background-color: blue;
}
</style>
</head>
<body>
<div>asd</div>
<div class="asd">asd</div>
<div class="asdf">asd</div>
<div>asd</div>
<div class="asdf">asd</div>
<div>asd</div>
<div>asd</div>
<div>asd</div>
<div>asd</div>
<div class="asd">asd</div>
<div class="asd">asd</div>
<div class="asdf">asd</div>
<div>asd</div>
<div>asd</div>
<div class="asdf">asd</div>
<div class="asd">asd</div>
<div class="asdf">asd</div>
<div>asd</div>
<div>asd</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment