Erik Ellasandre
Erik Ellasandre

Reputation: 45

Set Div Width 100% But With Margin

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

Answers (1)

subjectivist
subjectivist

Reputation: 245

Try placing the following in the style or CSS and see if it works:

box-sizing:border-box;

Upvotes: 2

Related Questions