Hey ich hoffe ihr könnt mir helfen. Ich hab eine einfache Liste in einem Div, und diese soll zentriert im Div vorliegen, jedoch schaffe ich es nicht diese zu zentrieren. Vielleicht kann mir ja einer helfen (die Ränder sind nur zur Übersicht für mich).
HTML
<html>
<header>
<style type="text/css">
#navigation {
margin: 0 auto;
height: 80px;
border-style: solid;
width: 800px
}
#navigation ul {
padding: 0px;
margin: 0px;
}
#navigation li {
list-style: none;
float: left;
text-align: center;
border-style: solid;
width: 120px;
}
</style>
</header>
<body>
<div id="navigation">
<ul>
<li>
<p>Home</p>
</li>
<li>
<p>Massage</p>
</li>
<li>
<p>Bodywrapping</p>
</li>
<li>
<p>Angebot</p>
</li>
<li>
<p>Kontakt</p>
</li>
</ul>
</div>
</body>
</html>
Alles anzeigen