Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<html>
<head>
<style type="text/css">
body
{
width: 1200;
height: 1000;
margin: 10 auto;
background-color: #3d3d3d;
}
div#main
{
background-image: url(bild.jpg);
width: 90%;
height: 90%;
}
</style>
<body>
<div id="main">
</div>
</body>
</html>
pack alles in einen div container der etwas kleiner ist als die gesamte seite. diesem gibst du das bild als hintergrung. dem <body> tag gibst du dann die hintergrundfarbe mit.
bsp.:
HTML:<html> <head> <style type="text/css"> body { width: 1200; height: 1000; margin: 10 auto; background-color: #3d3d3d; } div#main { background-image: url(bild.jpg); width: 90%; height: 90%; } </style> <body></body> </html>
width: 1000px;
height: 1000px;