Hi I have the following code: CSS
.center{
width: 100%;
margin: 0 auto;
border: 1px solid red;
}
.nav{
background: #606060;
width: 90%;
}
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/stylesheet.css" />
<title></title>
</head>
<body>
<div class="center">
<div class="nav">
<p>Ahoj</p>
</div>
</div>
</body>
</html>
I also tried .center
without width:
I searched throught themes here but I didn't find a solution. .nav
div still stays on the left.
Thank you for your help.