Ich möchte ein horizontales Menü erstellen, das direkt am oberen Rand der Seite beginnt, was bedeutet, dass ich keinen Rand darüber haben möchte, aber ich weiß nicht, wie das geht. Ich habe versucht, mit top: 0; margin:auto;
, aber es funktioniert nicht ... mein CSS-Code ist hier richtig:Eliminierung des oberen Bereichs eines horizontalen Menüs
.menu1
{
position: absolute;
top: 0;
margin:auto;
left: 0;
right: 0;
width: 100%;
}
.menu1 ul
{
list-style-type: none;
padding: 0;
overflow: hidden;
height: 30px;
background-color: purple;
}
.menu1 li
{
float:left;
margin-right: 10px;
}
.menu1 li a
{
display: block;
color: white;
text-align: center;
padding: 8px 10px;
text-decoration: none;
}
.menu1 li a:hover
{
text-decoration: underline;
}
Thank you! Es funktionierte. – Nelly