Direction: Choose the correct option
Q1.
nav ul {
list-style: none;
display: flex;
padding: 0;
}What is this CSS commonly used for?Direction: Choose the correct option
Q2.
.navbar a {
display: block;
padding: 14px 20px;
text-decoration: none;
}Why use display: block on navigation links?Direction: Choose the correct option
Q3.
.navbar a:hover {
background-color: #555;
}What does this accomplish?Direction: Choose the correct option
Q4.
.navbar .active {
background-color: #04AA6D;
}What is the purpose of this CSS?Direction: Choose the correct option
Q5.
@media screen and (max-width: 600px) {
.navbar { flex-direction: column; }
}What does this media query do?