Edu
Hub
Courses
AI Tools
Leaderboard
Login/Register
AR
Abdullah Rashid
abdullah@example.com
Navigation
📚
Courses
🏆
Leaderboard
✨
AI Tools
←
CSS Basic
⏱
15:00
Quit
0 / 20 answered
0%
CSS Basic
10 questions · Medium difficulty · 00:20:00 min
🔥 In Progress
Question 1
What does CSS stand for?
Creative Style Sheets
Computer Style Sheets
Colorful Style Sheets
Cascading Style Sheets
Question 2
Which HTML attribute is used to define inline styles?
css
inline
class
style
Question 3
How do you select an element with id="header" in CSS?
.header
*header
header
#header
Question 4
Which CSS property is used to change the background color of an element?
color
bgcolor
background-color
background
Question 5
Which CSS property controls the text size?
font-size
text-style
text-size
font-style
Question 6
What is the correct CSS syntax to make all <p> elements have red text?
p { color: red; }
p { text-color: red; }
<p style="color: red;">
p { font-color: red; }
Question 7
Which property is used to change the text color of an element?
foreground
text-color
color
font-color
Question 8
Which CSS property sets the spacing between lines of text?
text-spacing
letter-spacing
line-height
line-spacing
Question 9
How do you make each word in a paragraph start with a capital letter?
text-transform: uppercase;
font-variant: small-caps;
text-style: capitalize;
text-transform: capitalize;
Question 10
What is the default value of the CSS position property?
absolute
relative
fixed
static
Question 11
Which CSS property controls the space between an element's border and its content?
border-spacing
padding
margin
spacing
Question 12
What does margin: 10px 5px; mean?
top and bottom margins 10px, left and right margins 5px
all margins 10px and 5px alternately
top margin 10px, left and right margins 5px, bottom margin auto
top margin 10px, bottom margin 5px
Question 13
Which CSS property is used to change the font of an element?
font-family
font-weight
font-style
text-font
Question 14
How do you select all elements with class="example"?
.example
#example
class=example
*example
Question 15
Which CSS property is used to set an image as the background?
image-background
background-color
bgimage
background-image
Question 16
Which unit is relative to the font-size of the root element (<html>)?
vh
px
em
rem
Question 17
Which CSS property makes a container a flexbox container?
display: flex;
display: block;
flex: true;
flex-container
Question 18
What does the CSS property "display: none;" do?
The element is hidden but still takes up space
The element is hidden but clickable
The element is completely removed from the layout and not visible
The element becomes transparent
Question 19
Which CSS property is used to add rounded corners to an element?
border-radius
border-curve
edge-radius
corner-radius
Question 20
Which selector has the highest specificity?
Class selector
Element selector
ID selector
Universal selector
✅ Answered:
0
⬜ Unanswered:
8
📊
20%
done
Submit Answers →