CSS Quiz
CSS Quiz
CSS QUIZ
https://www.w3schools.com/quiztest/quiztest.asp?qtest=CSS
3. Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section
10. Which CSS property is used to change the text color of an element?
Color
12. What is the correct CSS syntax for making all the <p> elements bold?
p {font-weight:bold;}
14. How do you make each word in a text start with a capital letter?
text-transform:capitalize
Page 1 of 2
Tuesday, 14th January 2019
17. How do you display a border like this: The top border = 10 pixels; the bottom border = 5 pixels; the left border =
20 pixels; the right border = 1pixel?
border-width:10px 1px 5px 20px;
19. When using the padding property; are you allowed to use negative values?
No
20. How do you make a list that lists its items with squares?
list-style-type: square;
Page 2 of 2