Created
February 26, 2012 10:02
-
-
Save nielsdoorn/1915783 to your computer and use it in GitHub Desktop.
items mooi invoegen
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
/** | |
* 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) { | |
} | |
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
<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> |
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
{"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