Tipp 1: Nicht auf Info@Computer-hilfe hören, der hat Quatsch erzählt.
Tipp 2: Folgendes kopieren, in einer HTML-Datei abspeichern, öffnen, bestaunen und dann verstehen:
Code:
<!doctype html>
<html>
<head>
<style type='text/css'>
#nav {
background: red;
overflow: auto;
}
#nav a {
float: left;
margin: 3px;
margin-right: 0;
background: f90;
padding: 5px 8px;
text-decoration: none;
}
#nav a:hover {
background: #ff8;
}
</style>
</head>
<body>
<div id='nav'>
<a href='#'>#</a>
<a href='http://www.google.de'>Google</a>
<a href='http://www.mygully.com'>myGully</a>
<a href='#'>#</a>
<a href='#'>#</a>
</div>
</body>
</html>