Direction: Choose the correct option
Q1.
.container {
max-width: 600px;
width: 100%;
background: lightblue;
}What will be the width of .container on a 500px screen?Direction: Choose the correct option
Q2.
Which CSS property is used to set the maximum width of an element?
Direction: Choose the correct option
Q3.
.box {
max-width: 400px;
width: 800px;
}What will be the actual width of .box?Direction: Choose the correct option
Q4.
What is the default value of max-width property?
Direction: Choose the correct option
Q5.
.responsive {
max-width: 100%;
height: auto;
}This CSS is commonly used for which type of elements?