Reputation: 45
How can I make my div the max size of a container? When I try searching it up my self I always find articles talking about max-width.In my website my content area is a div that has 4 items in it and I want to set the width of content area to 100%. To make all the items fit perfectly but when I do this the margin is overridden?
Upvotes: 1
Views: 1697
Reputation: 245
Try placing the following in the style or CSS and see if it works:
box-sizing:border-box;
Upvotes: 2