Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
Ja eigentlich schon, aber "max-width" wird doch vom IE nicht unterstützt (bzw. nur fehlerhaft).planet4 schrieb:ist die Breite der einzige Grund, warum du Grafiken benutzten musst?
die Breite kannst du auch über css festlegen..
<ul><li style="float:left">menuepunkt01</li><li>menuepunkt02</li></ul>
ul {
list-style-type:none;
}
a.link01:link, a.link01:visited, a.link01:hover, a.link01:active {
display:block;
width:150px;
height:20px;
font-size:1px;
color:#000;
text-decoration:none;
background:url(bild_normal.jpg);
}
a.link01:hover {
background:url(bild_hover.jpg);
}