Beispiel:Box-Modell-1.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
h1 {
	border: 5px solid steelblue;
	background: #f5e6bc;
}

p {
	margin: 2em;
	border: 10px solid steelblue;
	padding: 10px;
	background: #efd68f;
}

.box {
	width: 200px;
	margin: 2em auto;
	padding: 4em;
	text-align: center;
}
  </style>
  <title>Box-Modell - 1</title>
</head>
<body>
<h1>Überschrift</h1>
<p class="box">Das ist ein Textabsatz.</p>
<p>Das ist ein weiterer Textabsatz.</p>

</body>
</html>