DONT ADD ANYTHING HERE!

  1. The max-width CSS property sets the maximum width of an element
  2. It prevents the used value of the width property from becoming larger than the value specified by max-width
  3. values
    1. length
      Defines the max-width as an absolute value
    2. percentage
      Defines the max-width as a percentage of the containing block's width
    3. none
      No limit on the size of the box
    4. max-content
      The intrinsic preferred max-width
    5. min-content
      The intrinsic minimum max-width
    6. fit-content
      1. Use the available space, but not more than max-content
      2. That is,
        min(max-content, max(min-content, stretch)) 
    7. fit-content(length-percentage)
      1. Uses the fit-content formula with the available space replaced by the specified argument
      2. That is,
        min(max-content, max(min-content, argument))

References