Не могу понять почему не работает свойство Justify-content. Нужно чтобы меню растягивалось.
Пример кода:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="CSS/reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Document</title>
</head>
<body>
<header>
<div class="container">
<div class="logo-menu">
<div class="logo">
<span>Leo/-</span>
</div>
<nav>
<ul>
<li><a href="#">Solutions</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
<img src="img/icon-coffee.png">
<div class="text-header"><code>
<span>Introducing</span>
<span>Something hot......</span>
<a href="#">Try Demo</a>
</div>
</div>
</header>
</body>
</html></code>
<code>
.container{
max-width: 1024px;
width: 100%;
margin: 0 auto;
font-family: roboto, arial;
font-size: 16px;
}
header{
background: url(img/bg-header.jpg) no-repeat center top / cover;
height: 500px;
}
.logo{
font-size: 119px;
color: #cdd0d2;
flex: 1 1 auto;
}
.logo-menu{
display: flex;
align-items: center;
}
nav ul{
display: flex;
flex: 1 1 auto;
justify-content: space-around;
}
</code>