Loading

Quipoin Menu

Learn • Practice • Grow

Direction: Choose the correct option

Q1.

Which color formats can be used for border-color?
A. Hex values (#ff0000)
B. All of the above
C. RGB/RGBA values
D. Color names (red, blue)
Direction: Choose the correct option

Q2.

div {
border-style: solid;
border-color: red green blue orange;
}
How are these colors applied?
A. Top:red Right:green Bottom:blue Left:orange
B. Random order
C. Clockwise order
D. Not valid
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?
A. Gray border
B. Semi-transparent black border
C. Transparent border
D. Opaque black border
Direction: Choose the correct option

Q4.

.btn {
border: 2px solid gray;
}
.btn:hover {
border-color: blue;
}
What effect does this create?
A. Border turns blue on hover
B. Border style changes
C. No effect
D. Border width changes
Direction: Choose the correct option

Q5.

input:valid {
border-color: green;
}
input:invalid {
border-color: red;
}
What is this used for?
A. Focus effects
B. Hover effects
C. Form validation visual feedback
D. Styling all inputs