HTML and CSS Reference
In-Depth Information
16. <article>
17. <h1></h1>
18. <p></p>
19. <aside></aside>
20. <p></p>
21. </article>
22. </section>
23. </div>
24. <div>
25. <footer>
26. <p></p>
27. <p></p>
28. </footer>
29. </div>
30.</body>
31.</html>
1. Referencing the HTML listing, how would you style only the first paragraph inside the
footer element to have a smaller font size?
A.
footer p:first-child {
font-size: x-small;
}
B.
footer p.first-child {
font-size: x-small;
}
C.
Footer:p:first-child {
font-size: x-small;
}
D.
Footer=>p,first-child {
font-size: x-small;
}
Search WWH ::




Custom Search