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.
Naja, aber macht das einen Sinn? Eine Hintergrundfarbe unter einem Image? Erstellt man dann nicht das Image mit einem transparenten Hintergrund?
<!DOCTYPE html>
<html>
<head>
<title>Supertolle Testseite</title>
<style type="text/css">
* { margin:0; padding:0; }
html { background:#ccc; }
img { background:#000; color:#fff; }
</style>
</head><body>
<img src="keinbild.jpg" width="200" height="200" alt="alttext von keinbild" />
</body></html>