59 lines
1.5 KiB
HTML
59 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Box-Modell</title>
|
|
<style>
|
|
body { padding: 1.2rem; font-family: system-ui, sans-serif; background: #fff; }
|
|
.box { display: inline-block; }
|
|
.layer {
|
|
padding-top: 22px;
|
|
padding-bottom: 18px;
|
|
padding-left: 18px;
|
|
padding-right: 18px;
|
|
position: relative;
|
|
}
|
|
.layer::before {
|
|
position: absolute;
|
|
top: 4px; left: 8px;
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
}
|
|
.margin { background: #fde68a; }
|
|
.margin::before { content: "margin"; color: #92400e; }
|
|
.border { background: #fca5a5; }
|
|
.border::before { content: "border"; color: #991b1b; }
|
|
.padding { background: #86efac; }
|
|
.padding::before { content: "padding"; color: #166534; }
|
|
.content {
|
|
background: #93c5fd;
|
|
width: 140px;
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #1e3a8a;
|
|
font-weight: 600;
|
|
}
|
|
pre { background: #f3f4f6; padding: 10px; border-radius: 4px; font-size: 0.85em; margin-top: 1rem; font-family: ui-monospace, monospace; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="layer margin">
|
|
<div class="layer border">
|
|
<div class="layer padding">
|
|
<div class="content">content</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<pre>.box {
|
|
width: 140px;
|
|
padding: 18px;
|
|
border: 18px solid;
|
|
margin: 18px;
|
|
}</pre>
|
|
</body>
|
|
</html>
|