Created
August 19, 2013 18:55
-
-
Save andershaig/6272695 to your computer and use it in GitHub Desktop.
If the following CSS was applied, which lines would be affected?
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
li:nth-child(3n + 1) { | |
background: red; | |
} |
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="shopping list"> | |
<ul> | |
<li>Ham</li> | |
<li>Eggs</li> | |
<li>Cheese</li> | |
<li>Cups</li> | |
<li>Wool Blanket</li> | |
<li>Veggies</li> | |
<li>Steak</li> | |
<li>Birthday Cake</li> | |
<li>Chicken</li> | |
<li>Ice Cream</li> | |
<li>Nacho Chips</li> | |
<li>Salso</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment