Step 14
You now have three type selectors with the exact same styling. You can add the same group of styles to many elements by creating a list of selectors. Each selector is separated with commas like this:
Test
Sorry, your code does not pass. Keep trying.
Hint
You should use a single type selector for all three elements, h1, h2, p
. Be sure to use that order.
selector1, selector2 {
property: value;
}
Use a selector list to center the h1
, h2
and p
elements at the same time.
**Your code so far**
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<style>
h1, h2, p, {
text-align: center;
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
p {
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
</header>
<main>
<section>
<h2>Coffee</h2>
</section>
</main>
</body>
<html>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36 OPR/87.0.4390.58
Challenge: Step 14
Link to the challenge: