HTML Width Percentage

  • max-width — the maximum width an element can reach
  • width the width of the element

Your code indicates that the #wrapper is to be 98% of the viewport but it should never be wider than 1080px. If 98% of the window width is greater than 1020px, the #wrapper will not get any wider!

Please comment if you don’t understand 🙂

Leave a Comment