Direction: Choose the correct option
Q1.
Which CSS property is used to specify the positioning method of an element?
Direction: Choose the correct option
Q2.
.box {
position: relative;
top: 20px;
left: 30px;
}How will this element be positioned?Direction: Choose the correct option
Q3.
Which position value positions an element relative to its nearest positioned ancestor?
Direction: Choose the correct option
Q4.
.header {
position: fixed;
top: 0;
width: 100%;
}What is the behavior of this header?Direction: Choose the correct option
Q5.
What is the default position value for all HTML elements?
