A Pen by Captain Anonymous on CodePen.
Created
March 17, 2015 19:10
-
-
Save anonymous/95496c7fe9a7a1bf4ce1 to your computer and use it in GitHub Desktop.
KwrxrG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li class="big"></li> | |
<li class="yellow"></li> | |
<li class="pink"></li> | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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