+ 1
Can anyone explain me how to code css box model . I am not able to understand it
Please help me
3 odpowiedzi
+ 1
Box model is a concept that tell you that every element of html is a box and you can set margin padding and border to it.
To feel just write a code with few div/p/span/h2
And in css write
*{
border:1px solid red;
}
You will get how the boxes are .