Beispiel:Background-1.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!DOCTYPE html> <html lang="de"> <head> <meta charset="utf-8"> <title>background-image</title> <style> body { background-color: skyBlue ; background-image: url("https://wiki.selfhtml.org/images/1/1c/Cloud.svg");

color: midnightBlue; height: 100vh; } h1 { margin-inline: 2em; margin-block: 6em 5em; } </style> </head> <body>

Hintergrund mit Grafik als Hintergrundbild

Dieses Beispiel demonstriert die Wirkung der Eigenschaft background-image in Verbindung mit einem SVG.

</body> </html>