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.
zum Beipiel float (float: Elemente umfließen lassen: CSS-Referenz auf CSS 4 You - The Finest in Stylesheets)imho geht das nicht. aber warum machst du display:inline; ? Vielleicht gibt es ja ne bessere Lösung?
.main_navigation ul{
margin: 0px;
padding: 5px;
text-align: center;
list-style: url(../_files/_images/_utility/l.gif)
}
.main_navigation li{
display: inline;
padding: 0px 20px 0px 0px;
und was hat das mit der Nichtdarstellung des Listensymbols zu tun?
float hat von der Darstellung her in etwa den gleichen Effekt wie inline.und was hat das mit der Nichtdarstellung des Listensymbols zu tun?
.main_navigation ul{
margin: 0px auto;
padding: 5px;
text-align: center;
[COLOR=Green][I][B]display:table;
width:auto;
margin:auto;[/B][/I][/COLOR]
list-style: url(../_files/_images/_utility/l.gif)
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
UL{
border:1px solid black;
width:300px;
margin:0px auto;
}
LI{
border:1px solid black;
float:left;
width:50px;
margin-right:20px;
}
</style>
</head>
<body>
<ul>
<li>link</li>
<li>link</li>
<li>link</li>
<li>link</li>
</ul>
</body>
</html>