Answers for "ho wto set dimensions of a div box in html"

CSS
2

box sizing

html {
	box-sizing: border-box;
}

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

box sizing border box

*{
 box-sizing: border-box;
 }
Posted by: Guest on May-25-2020

Code answers related to "ho wto set dimensions of a div box in html"

Browse Popular Code Answers by Language