CSS Practice Questions
Topics Covered:
CSS Selectors, Box Model, Layout, Flexbox, Grid, Transitions, Animations, Variables, and more
30 Questions
Practice Questions
1. Which of the following is a valid CSS selector for selecting all
<p>
elements?
2. What does CSS stand for?
3. Which property is used to change the text color of an element?
4. Which property is used to change the font family of an element?
5. What is the correct way to link an external CSS file in HTML?
<link rel="stylesheet" type="text/css" href="style.css">
6. What is the purpose of the CSS
float
property?
7. Which property controls the space between an element's content and its border?
8. Which property controls the space outside an element's border?
9. What does
box-sizing: border-box;
do?
10. How do you select an element with the id "header" in CSS?
11. How do you select all elements with the class "menu"?
12. Which property is used to set the spacing between lines of text?
13. Which property transforms text to uppercase?
14. Which property adds shadow to text?
15. What is the default display value of a
<div>
element?
16. Which property sets the background color of an element?
17. Which CSS feature allows you to create responsive designs based on device characteristics?
18. How do you add rounded corners to an element?
19. Which property controls the transparency of an element?
20. Which CSS property is used to create a grid layout?
21. Which property specifies the stacking order of positioned elements?
22. How do you change the cursor to a pointer when hovering over an element?
23. Which property controls the spacing between letters in text?
24. How can you center a block-level element horizontally?
25. Which property is used to set the font size of an element?
26. What does the
:hover
pseudo-class do?
27. Which property creates smooth transitions between CSS property changes?
28. How do you define a CSS variable?
29. How do you reference a CSS variable in a property value?
30. Which property hides an element without removing it from the document flow?