Direction: Choose the correct option
Q1.
What are the three properties in border shorthand?
Direction: Choose the correct option
Q2.
div {
border-top: 3px dashed red;
border-bottom: 2px dotted blue;
}How many borders are applied?Direction: Choose the correct option
Q3.
img {
border: none;
}What does border: none do?Direction: Choose the correct option
Q4.
Which CSS property is used to round the corners of a border?
Direction: Choose the correct option
Q5.
.card {
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}What visual effect does this create?