Skip to content

Instantly share code, notes, and snippets.

@ellefsen
Forked from anonymous/KwrxrG.markdown
Created March 17, 2015 19:10
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 ellefsen/bc453591928f539ccfdc to your computer and use it in GitHub Desktop.
Save ellefsen/bc453591928f539ccfdc to your computer and use it in GitHub Desktop.
<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