odin-default-css-exercises/foundations/03-grouping-selectors
ZebraMilk ab92ffab14 Add indent to the <body> and <head> tags within <html> for readability 2022-01-30 11:56:35 -06:00
..
solution Add indent to the <body> and <head> tags within <html> for readability 2022-01-30 11:56:35 -06:00
README.md Add new outcome screenshots 2021-10-06 15:55:58 -04:00
desired-outcome.png Add new outcome screenshots 2021-10-06 15:55:58 -04:00
index.html Add indent to the <body> and <head> tags within <html> for readability 2022-01-30 11:56:35 -06:00
style.css Add solutions and templates 2021-08-29 19:22:54 -04:00

README.md

Grouping Selectors

Let's build a little off the previous exercise, in which you (hopefully) added multiple classes to a single element in order to apply two different rules to it.

Instead of having a single element with two different rules applied, though, you're instead going to give two elements each a unique class name, then add rules for styles that both elements share as well as their own unique styles. Make sure you take a good look at the outcome image below to see exactly what is unique about each element, and what both elements have in common.

This will help you further practice adding classes and using class selectors, so be sure you add the class attribute in the HTML file. For the remainder of these exercises, the format of any colors is entirely up to you; we trust you'll practice using the different values! The properties you need to add to each element are:

  • The first element: a black background and white text
  • The second element: a yellow background
  • Both elements: a font size of 28px and a list of fonts containing Helvetica and Times New Roman, with sans-serif as a fallback

Desired Outcome

desired outcome

Self Check

  • Does each element have a unique class name?
  • Did you use the grouping selector for styles that both elements share?
  • Did you make separate rules for the styles unique to each element?