Quiz 5 CSS3 Selectors

Question 1: Which pseudo selector allows us to effect multiple child elements with odd and even





Question 2: What does the :not pseudo selector do



allows you to target elements that do NOT match the selector you are presenting.

Question 3:In our lesson we had this as an example


        <ul id="before">
            <li>First</li>
            <li>Second</li>
            <li>Third</li>
            <li>Fourth </li>
            <li>Fifth</li>
            <li>Sixth</li>
            <li>Seventh</li>
            <li>Eighth</li>
        </ul>
              

What part of the lesson is this from



:not

Question 4: Which pseudo selector matches every element that is the first child, of a particular type, of its parent.



:middle-of-type

Question 5: In what section of lesson 5 did i use the id="first"




Question 6:What section dealt with adding a ! point .



:after