Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created April 10, 2012 17:51
Show Gist options
  • Select an option

  • Save LeaVerou/2353226 to your computer and use it in GitHub Desktop.

Select an option

Save LeaVerou/2353226 to your computer and use it in GitHub Desktop.
Color test
/**
* Color test
*/
span {
display: inline-block;
width: 50px; height: 50px;
background: gold;
}
div { margin: 30px 0; }
span:first-child { background: #FA9200 }
span:nth-child(2) { background: #DA312D }
span:nth-child(3) { background: #693A8B }
span:nth-child(4) { background: #00B1B9 }
.new span:nth-child(2) { background: hsl(90, 70%, 40%) }
.new span:nth-child(3) { background: hsl(330, 50%, 30%) }
<div class="current">
<span></span>
<span></span>
<span></span>
<span></span>
</div>vs
<div class="new">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
{"view":"split","seethrough":"","prefixfree":"1","page":"result"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment