Direction: Choose the correct option
Q1.
Which CSS property is used to horizontally center text?
Direction: Choose the correct option
Q2.
.container {
width: 400px;
margin: 0 auto;
}What does margin: 0 auto do?Direction: Choose the correct option
Q3.
.parent {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
}What does this CSS do?Direction: Choose the correct option
Q4.
.box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}Why is transform: translate(-50%, -50%) needed?Direction: Choose the correct option
Q5.
Which property is used to vertically align text within an inline-block element?
