Direction: Choose the correct option
Q1.
h1, h2, h3 {
color: navy;
}What is the comma doing in this selector?Direction: Choose the correct option
Q2.
What is the benefit of using group selectors?
Direction: Choose the correct option
Q3.
.btn, button, input[type=submit] {
border-radius: 4px;
}What elements does this style affect?Direction: Choose the correct option
Q4.
Can you mix different types of selectors in a group selector?
Direction: Choose the correct option
Q5.
.header,
.footer {
background: #333;
color: white;
}What is the advantage of writing this way?