Testneu: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „{| border="1" style="background-color:#DDDDDD" |- style="background-color:#DDD" | style="background-color:#888" | Zelle 1 || Zelle 2 || style="border:2px so…“) |
|||
Zeile 7: | Zeile 7: | ||
| style="background-color:#888" | Zelle 7 || Zelle 8 || Zelle 9 | | style="background-color:#888" | Zelle 7 || Zelle 8 || Zelle 9 | ||
|} | |} | ||
<!DOCTYPE html> | |||
<html> | |||
<head> | |||
<meta charset="utf-8"> | |||
<title>background-color</title> | |||
<style> | |||
h1 { background-color: #abc; } | |||
p { background-color: lightgreen; } | |||
</style> | |||
</head> | |||
<body> | |||
<h1>Hintergrundfarben festlegen</h1> | |||
<p>Dieses Beispiel demonstriert die Wirkung der Eigenschaft <code>background-color</code>.</p> | |||
</body> | |||
</html> |
Version vom 14. Januar 2017, 21:52 Uhr
Zelle 1 | Zelle 2 | Zelle 3 |
Zelle 4 | Zelle 5 | Zelle 6 |
Zelle 7 | Zelle 8 | Zelle 9 |
<!DOCTYPE html>
<html>
<head> <meta charset="utf-8"> <title>background-color</title> <style>
h1 { background-color: #abc; } p { background-color: lightgreen; }
</style> </head> <body>
Hintergrundfarben festlegen
Dieses Beispiel demonstriert die Wirkung der Eigenschaft background-color
.
</body>
</html>