Skip to content

Instantly share code, notes, and snippets.

@nielsdoorn
Created February 26, 2012 10:02
Show Gist options
  • Save nielsdoorn/1915783 to your computer and use it in GitHub Desktop.
Save nielsdoorn/1915783 to your computer and use it in GitHub Desktop.
items mooi invoegen
/**
* items mooi invoegen
*/
#items {
list-style-type: none;
}
.item {
display:block;
width: 100px;
height:100px;
background-color:lightblue;
line-height: 100px;
text-align:center;
border: 5px solid lightgreen;
border-radius: 20px;
float:left;
margin: 5px;xs
}
.item:nth-child(1) {
}
.item:nth-child(3) {
}
.item:nth-child(5) {
}
<script src="http://code.jquery.com/jquery-1.7.1.min.js" />
<ul id="items">
<li class="item">blah</li>
<li class="item">blah</li>
<li class="item">blah</li>
<li class="item">blah</li>
<li class="item">blah</li>
<li class="item">blah</li>
</ul>
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment