odin-default-css-exercises/foundations/06-cascade-fix
AngryGolfer 83ecb5730a
Typo and line wrap
Changed 12px to 14px to match the .css file px size and wrapped lengthy description
2022-04-01 12:03:29 +01:00
..
solution Typo and line wrap 2022-04-01 12:03:29 +01:00
README.md Fix issue for users with color blindness 2022-01-16 15:07:45 -05:00
desired-outcome.png Fix issue for users with color blindness 2022-01-16 15:07:45 -05:00
index.html Merge branch 'main' into main 2022-03-14 15:17:47 -05:00
style.css Fix issue for users with color blindness 2022-01-16 15:07:45 -05:00

README.md

CSS Methods

This final exercise for CSS Foundations is going to give you a closer look at the cascade, in particular specificity and rule order. Both the HTML and CSS files are filled out for you, so instead of adding rules yourself, you will simply be editing what is provided.

There are a few elements that have some sort of specificity or rule order issue in the provided CSS file. It's up to you to figure out what issue is affecting an element, and how to fix it. You can edit the CSS file by adding, removing, or editing selectors for a declaration block, or by moving declaration blocks around. You should not edit the HTML file or any of the actual styles in the CSS.

There are multiple ways to solve this exercise, and we did our best to include all of the possible solutions for each element.

Issues with the cascade can be the bane of their existence for many when it comes to CSS. While you won't become a cascade expert from this exercise alone, and there are other ways to deal with these issues, it is still super helpful to see how these issues affect our final styles and why it's important to order rules carefully.

Desired Outcome

desired outcome

Self Check

  • Did you make sure to not edit the HTML file?
  • If you added selectors to the CSS, do they target a valid HTML element?