Direction: Choose the correct option
Q1.
Which units can be used for border-width?
Direction: Choose the correct option
Q2.
div {
border-style: solid;
border-width: 2px 5px 8px 3px;
}How are these widths applied?Direction: Choose the correct option
Q3.
div {
border: thick solid black;
}How thick is "thick" approximately?Direction: Choose the correct option
Q4.
What happens if border-style is not specified but border-width is?
Direction: Choose the correct option
Q5.
div {
border-top-width: 3px;
border-right-width: 1px;
}Why might this not show borders?