Direction: Choose the correct option
Q1.
What is the main difference between inline and inline-block elements?
Direction: Choose the correct option
Q2.
.box {
display: inline-block;
width: 100px;
height: 100px;
background: red;
}How will multiple .box elements appear?Direction: Choose the correct option
Q3.
Which display value is best for creating horizontal navigation menus?
Direction: Choose the correct option
Q4.
span {
display: inline-block;
width: 50px;
height: 50px;
background: blue;
}Will this CSS work on a span element?Direction: Choose the correct option
Q5.
What is a common issue with inline-block elements?
