DEV Community

MoonLight
MoonLight

Posted on

3 3

box sizing Css Mosh

content box

div {
box-sizing: content-box;
width: 100%;
border: solid #5B6DCD 10px;
padding: 5px;
}
Enter fullscreen mode Exit fullscreen mode

Image description

border box

div {
box-sizing: border-box;
width: 100%;
border: solid #5B6DCD 10px;
padding: 5px;
}
Enter fullscreen mode Exit fullscreen mode

Image description

we should use these codes for ::before ::after
Image description

Top comments (0)

Heroku

This site is powered by Heroku

Heroku was created by developers, for developers. Get started today and find out why Heroku has been the platform of choice for brands like DEV for over a decade.

Sign Up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay