Saturday, March 6, 2021

CSS Box Sizing

 box-sizing: 'content-box' => width = width(content), does not include padding, border or margins -> default behaviour

box-sinzing: 'border-box' => width = width(content) + padding + border, does not include margins

No comments:

Post a Comment