Tabula_Rasa
Mitglied
Hallo,
ich habe das Problem, dass folgender Code nicht auf Geräten mit dem Betriebssystem IOS funktioniert:
Woran könnte das liegen? Die Navi-Leiste ist nicht in der Mitte, sondern die Hälfte ist nicht mehr zu sehen und geht über den rechten Rand hinaus.
ich habe das Problem, dass folgender Code nicht auf Geräten mit dem Betriebssystem IOS funktioniert:
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
.navigation ul {
display: flex;
flex-flow: row wrap;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
max-width: 800px;
top: 0;
background-color: black;
position: fixed;
top: 0;
}
.navigation li {
float: left;
flex-grow: 1;
flex-shrink: 1;
}
li a {
display: block;
color: white;
text-align: center;
padding: 16px;
text-decoration: none;
border-bottom: none;
}
li a:hover {
background-color: #214f99;
}
.navigation nav {
display: flex;
justify-content: center;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="navigation">
<nav>
<ul>
<li><a href="#"> 1 </li></a>
<li><a href="#"> 2</li></a>
<li> <a href="#">3</li></a>
</ul>
</nav>
</div>
</body>
</html>
Woran könnte das liegen? Die Navi-Leiste ist nicht in der Mitte, sondern die Hälfte ist nicht mehr zu sehen und geht über den rechten Rand hinaus.