Direction: Choose the correct option
Q1.
Which color formats can be used for border-color?
Direction: Choose the correct option
Q2.
div {
border-style: solid;
border-color: red green blue orange;
}How are these colors applied?Direction: Choose the correct option
Q3.
.transparent-border {
border: 3px solid rgba(0, 0, 0, 0.5);
}What does RGBA(0,0,0,0.5) create?Direction: Choose the correct option
Q4.
.btn {
border: 2px solid gray;
}
.btn:hover {
border-color: blue;
}What effect does this create?Direction: Choose the correct option
Q5.
input:valid {
border-color: green;
}
input:invalid {
border-color: red;
}What is this used for?