Created
September 13, 2012 02:13
-
-
Save minitech/3711414 to your computer and use it in GitHub Desktop.
Alternating background colours
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
/** | |
* Alternating background colours | |
*/ | |
.postcontainer { | |
background-color: lightblue; | |
padding: 0.2em; | |
} | |
.postcontainer:nth-of-type(2n) { | |
background-color: darkblue; | |
color: white; | |
} |
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
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> | |
<div class="postcontainer">A post</div> |
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","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment