Direction: Choose the correct option
Q1.
Which CSS property controls what happens to content that is too big to fit in an area?
Direction: Choose the correct option
Q2.
.box {
width: 200px;
height: 100px;
overflow: hidden;
}What happens to content that exceeds the box dimensions?Direction: Choose the correct option
Q3.
Which overflow value adds scrollbars only when necessary?
Direction: Choose the correct option
Q4.
.container {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
}This is useful for creating what?Direction: Choose the correct option
Q5.
What is the default value of overflow property?
