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
Cascading Style Sheets
Computer Style Sheets
Colorful Style Sheets
Question 2
Which HTML attribute is used to define inline styles?
inline
style
css
class
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
background-color
bgcolor
background
Question 5
Which CSS property controls the text size?
text-style
font-style
font-size
text-size
Question 6
What is the correct CSS syntax to make all <p> elements have red text?
p { font-color: red; }
<p style="color: red;">
p { color: red; }
p { text-color: red; }
Question 7
Which property is used to change the text color of an element?
foreground
text-color
font-color
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: capitalize;
text-transform: uppercase;
font-variant: small-caps;
text-style: capitalize;
Question 10
What is the default value of the CSS position property?
static
absolute
relative
fixed
Question 11
Which CSS property controls the space between an element's border and its content?
padding
spacing
border-spacing
margin
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-style
text-font
font-family
font-weight
Question 14
How do you select all elements with class="example"?
.example
*example
#example
class=example
Question 15
Which CSS property is used to set an image as the background?
background-image
bgimage
background-color
image-background
Question 16
Which unit is relative to the font-size of the root element (<html>)?
rem
vh
px
em
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 clickable
The element is hidden but still takes up space
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
edge-radius
border-curve
corner-radius
Question 20
Which selector has the highest specificity?
Universal selector
ID selector
Element selector
Class selector
✅ Answered:
0
⬜ Unanswered:
8
📊
20%
done
Submit Answers →