Cześć macie tu kod.
Jak widać margin-left: 25% działa, nie przesuwa menu - jedynie sam tekst (div).
Ale jak chce zrobić menu poziome aby było na górze niescrollowane a tekst wyświetlał się pod tym menu (teraz wyświetla się jakby za menu jak jest margin-top:0) i dam margin-top:10% to przesuwa te menu też niżej, czemu? Przecież div jest po menu, jak to naprawić?
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
background-color: #f1f1f1;
position: fixed;
overflow: auto;
}
li a {
float: left;
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
li a.active {
background-color: #4CAF50;
color: white;
}
li a:hover:not(.active) {
background-color: #555;
color: white;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<div style="margin-top:10%;padding:1px 16px; background-color:green;">
<h2>xxxv</h2>
<h3>xxxxxxxx</h3>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.</p>
<p>Also notice that we have set overflow:auto to sidenav. This will add a scrollbar when the sidenav is too long (for example if it has over 50 links inside of it).</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
</div>
</body>
</html>