Research and Define CSS Terms

  1. This is the precedence a certain style has over a given element, class or ID.
  2. Determines what will have the final say of how a piece of code will look when it displays on a page.
  3. Inheritance refers to the elements that contain other elements will pass on their CSS rules. Such as most things being in body. Where a change in body will cascade down to each element that is inside of it.
  4. They are characteristics that may or may not be unique to the element that can be changed or altered.
  5. Value works in conjunction with property, you specify what property you want changed and then assign it a valid value to see that change such as color: red; changing the text color to red.
  6. They are used to determine what is selected for said color: red; change. They come in varieties but for the most part you can select the element, class, and ID of the given element that you want changed before adding dependent selectors or pseudo selectors.