Beispiel:Box-Modell-2.html
Aus SELFHTML-Wiki
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Box-Modell - 2</title>
<style>
.box {
width: 200px;
height: 50px;
margin: 20px auto;
border: 10px solid steelblue;
padding: 25px;
background: #f5e6bc; /* färbt padding */
}
.box .content {
display: inline-block; /* nötig, damit span eine width akzeptiert */
width: 100%;
height: 100%;
background: #efd68f; /* visualisiert content-box */
border: thin solid #641702;
text-align: center; /* Inhalt hor. + vert. zentrieren */
align-content: center;
}
</style>
</head>
<body>
<p class="box">
<span class="content">Das ist der Inhalt der Box.</span>
</p>
</body>
</html>