All HTML elements can be considered as boxes. In CSS3 and
CSS3 Generator, the term "box model" is used when talking about
design and layout.
The CSS box model is essentially a box that hush-up around
HTML elements, and it consists of: margins, borders, padding, and the actual contented.
The box model allows us to position a border around elements
and space elements in relation to other elements.
The image under the below illustrates the box model:
Explanation of the different parts:- Margin - Clears an area around the border. The margin does not have a background color, it is completely transparent
- Border - A border that goes around the padding and content. The border is inherited from the color property of the box
- Padding - Clears an area around the content. The padding is affected by the background color of the box
- Content - The content of the box, where text and images appear
Width and Height
of an Element
Important: When
you set the width and height properties of an element with CSS, you just set
the width and height of the content area. To calculate the full size of an
element, you must also add the padding, borders and margins.
|
The total width of
the element in the example below is 300px:
Width: 250px;
padding: 10px;
border: 5px solid gray;
margin: 10px;
padding: 10px;
border: 5px solid gray;
margin: 10px;
Let's do the math:
250px (width)
+ 20px (left + right padding)
+ 10px (left + right border)
+ 20px (left + right margin)
= 300px
250px (width)
+ 20px (left + right padding)
+ 10px (left + right border)
+ 20px (left + right margin)
= 300px
Assume that you
had only 250px of space. Let's make an element with a total width of 250px:
Example
Width: 220px;
padding: 10px;
border: 5px solid gray;
margin: 0px;
padding: 10px;
border: 5px solid gray;
margin: 0px;
All css and css3 for css tools and css3 tools with css code generator and css3 code generator. All css generator and css3 generator for css button gerator and css3 button generator, css gradient generator and css3 gradient generator, css menu maker and css menu maker, css button maker and css3 button maker other help css editor and css3 editor.

No comments:
Post a Comment