NEW
Font size
WorksheetsIMSD_Week-3_CSE-1
Total questions: 10
Worksheet time: 5mins
What is the correct syntax to select all <p> elements inside a <div> only?
div p { ... }
p div { ... }
div > p { ... }
div + p { ... }
Which selector targets a <p> that is a direct child of a <div>?
div p
div > p
div + p
div ~ p
Which CSS property controls the space inside an element’s border?
margin
border-spacing
padding
gap
Which CSS unit is relative to the viewport height?
em
vh
%
rem
What is the difference between visibility: hidden; and display: none;?
Both hide element and remove space
hidden hides element but keeps its space
none keeps space visible
No difference
What is the output of the following rule?
p::first-letter {
font-size: 200%;
color: green;
}
First word becomes green
First letter becomes large and green
Entire paragraph green
Invalid syntax
Which CSS selector will select all elements that are hovered?
:hover
hover()
onhover
.hover
Which of the following correctly centers an element horizontally with CSS Flexbox?
align-items: center;
justify-content: center;
text-align: center;
margin: center;
Which HTML tag is used to define an internal style sheet?
<css>
<style>
<script>
<design>
What does CSS stand for?
Creative Style Sheets
Colorful Style Sheets
Cascading Style Sheets
Computer Style Sheets
