InterviewSolution
Saved Bookmarks
| 1. |
What is the Box model in CSS? Which CSS properties are a part of it? |
|
Answer» A rectangle box is wrapped AROUND every HTML element. The box model is used to determine the height and width of the RECTANGULAR box. The CSS Box CONSISTS of Width and height (or in the absence of that, default values and the content inside), padding, borders, margin.
|
|