CSS 14 ๐ป box model
Box Model is a fundamental concept in CSS
It defines how elements structured and displayed
Content Area โ This is the actual space occupied by the element's content
Padding โ this is the space between the content area and the border
it creates some space around the content to create visual separation.
Border โ this is the line that separates the padding from the content area.
Margin โ This is the space between an element and its adjacent elements.
standard CSS box model โ The box size of an elements is defined by its width and height...
plus border and padding
.box width โ 150 + 5 + 5 + 25 + 25 = 210px
.box height โ 50 + 5 + 5 + 25 + 25 = 110px
alternative CSS box model โ The box size of an elements is defined by its width and height
The content area width and height is calculated by subtract padding and border
to use the alternative model for an element, use box-sizing: border-box
for all the elements use...
*, *::before, *::after{
box-sizing: border-box;
}
14 – block model
<div class="boxmodel">
<div class="margin">
<p>Margin</p>
<div class="border">
<p>Border</p>
<div class="padding">
<p>Padding</p>
<div class="content">
<p>Content</p>
</div>
</div>
</div>
</div>
</div>
.border {
padding: 45px;
width: 80%;
height: 100%;
position: relative;
background-color: rgb(243, 188, 80);
}
.margin {
background: #d2cece;
padding: 45px;
width: 100%;
height: 100%;
position: relative;
border: 2px dashed #bbb;
}
.padding {
padding: 45px;
width: 90%;
height: 100%;
position: relative;
background: #d2cece;
}
.content {
padding: 20px;
width: 90%;
height: 100%;
position: relative;
background: white;
border: 2px dashed #bbb;
}
.box {
width: 150px;
height: 50px;
margin: 10px;
padding: 25px;
border: 5px solid black;
}
Stop using slow, ad-bloated tool sites! ๐คฎ
๐ Search “KandZ Tools” on Google to use many professional utilities for free.
KandZ.me is the ultimate minimalist hub for:
โ
Finance (Mortgage, Interest, Inflation)
โ
Tech (Base64, JSON, Dev Suite, IP)
โ
Health (BMI, BMR, TDEE)
โ
Productivity (Timer, Workspace, QR)
โก๏ธ Fast & Private
๐ No data leaves your device
๐ 100% Free
๐ Use it now: https://tools.kandz.me
๐ Bookmark itโyouโll need it later!