Skip to content

Instantly share code, notes, and snippets.

Created March 17, 2015 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/95496c7fe9a7a1bf4ce1 to your computer and use it in GitHub Desktop.
Save anonymous/95496c7fe9a7a1bf4ce1 to your computer and use it in GitHub Desktop.
KwrxrG
<ul>
<li class="big"></li>
<li class="yellow"></li>
<li class="pink"></li>
</ul>
ul {
margin: 0;
padding: 0;
}
li {
float: left;
width: 33%;
padding-bottom: 33%;
list-style: none;
background: blue;
}
li.big {
width: 66%;
padding-bottom: 66%;
background: green;
}
li.pink {
background: pink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment