Beispiel:Textabsätze-mit-Blockelementen.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!DOCTYPE html> <html lang="de"> <head> <meta charset="utf-8"> <title>Blockelemente innerhalb von p-Elementen</title> <script> </script> <style> p {

 color: green;

} div {

 color: red;
 border:thin solid transparent;

} </style>

</head>

<body>

Blockelemente innerhalb von p-Elementen

Dies ist ein Text

mit einem div
 und noch etwas Text.

CSS

p {
	color: green;
}

div {
	color: red;
	border:thin solid;
}

</body>

</html>