Answers for "how to adjust the size of box in html"

CSS
2

box sizing

html {
	box-sizing: border-box;
}

*, 
*:before, *:after {
	box-sizing: inherit;
}
Posted by: Guest on February-06-2021

Code answers related to "how to adjust the size of box in html"

Browse Popular Code Answers by Language