What will happen if we apply this code? span { display: none; }
Anonymous Quiz
7%
Makes the element visible
86%
Hides the element completely
7%
Changes text color
0%
Adds spacing
What is the purpose of this code? img { object-fit: cover; }
Anonymous Quiz
86%
Fills the container, cropping part of the image
10%
Makes the image transparent
2%
Changes text size
2%
Hides the image
What is the error in this code? p { background-colr: red; }
Anonymous Quiz
11%
Works normally
75%
Typo in property name
9%
Changes text color
5%
No effect
What does this code do? a:hover { text-decoration: underline; }
Anonymous Quiz
7%
Always underlines the link
82%
Underlines the link on hover
9%
Hides the link
2%
Changes link color
What does this code do? body { line-height: 2; }
Anonymous Quiz
84%
Doubles the line height
7%
Changes font size
2%
Changes background color
7%
Hides text
What is the error in this code? h2 { font-size 20px; }
Anonymous Quiz
7%
Nothing
78%
Missing colon
12%
Works partially
2%
Changes color
What does this code do? ul { list-style-type: none; }
Anonymous Quiz
83%
Removes bullet points
7%
Adds numbers
5%
Changes color
5%
Hides elements
What is the expected result of this code? p { margin: 10px 20px; }
Anonymous Quiz
0%
All margins 10px
98%
Top/bottom 10px, left/right 20px
0%
All margins 20px
3%
No effect
What is the error in this code? div { bacground-color: blue; }
Anonymous Quiz
10%
Changes color
86%
Doesnt work due to typo
5%
Hides the element
0%
Changes size
What does this code do? div { text-align: center; }
Anonymous Quiz
80%
Centers the text inside the element
15%
Centers the element itself
2%
Changes text color
2%
Hides the text
What is the expected result of this code? div { overflow: hidden; }
Anonymous Quiz
7%
Shows all content
63%
Cuts content that exceeds the box
5%
Adds a scrollbar
24%
Hides the element completely
What does this code do? h1 { text-transform: uppercase; }
Anonymous Quiz
90%
Converts text to uppercase
5%
Converts text to lowercase
5%
Changes color
0%
Changes font size
What is the error in this code? p { font-style: boldd; }
Anonymous Quiz
5%
Nothing
83%
Typo
13%
Works partially
0%
Changes color
What does this code do? div { float: right; }
Anonymous Quiz
85%
Moves the element to the right
12%
Moves the element to the left
2%
Hides the element
0%
Changes color
What is the expected result of this code? p { color: rgb(255,0,0); }
Anonymous Quiz
0%
Blue text
15%
Green text
76%
Red text
10%
Black text
😢1
What is the error in this code? div { border 1px solid black; }
Anonymous Quiz
5%
Works normally
90%
Missing colon
5%
Changes color
0%
Hides element
What does this code do? div { position: absolute; top: 10px; left: 20px; }
Anonymous Quiz
93%
Positions the element relative to the page or container
0%
Hides the element
8%
Changes color
0%
Changes size
What does this code do? div { box-shadow: 2px 2px 5px grey; }
Anonymous Quiz
88%
Adds shadow around the element
8%
Changes background color
5%
Hides the element
0%
Adds border
What is the error in this code? p { margin-top 20px; }
Anonymous Quiz
83%
Missing colon
10%
Works normally
7%
Changes color
0%
Hides text
What does this code do? a { pointer-events: none; }
Anonymous Quiz
85%
Prevents interaction with the link
8%
Changes color
8%
Hides the link
0%
Adds underline
What is the effect of this code? div { transform: rotate(45deg); }
Anonymous Quiz
90%
Rotates the element 45 degrees clockwise
5%
Rotates the element 90 degrees
5%
Flips the element vertically
0%
No effect