Я практиковал flexbox и застрял на определенной практике. Во-первых, у меня есть navbar от начальной загрузки и CDN от начальной загрузки. Под навигационной панелью полностью пусто, и это место, где я пытаюсь разместить 4 разных столбца, равномерно распределенных по окну и под навигационной панелью. Это что-то не может сделать по какой-то причине. Я перепробовал все команды flexbox, но ничего. Может ли кто-нибудь объяснить мне причину, почему мой CSS не будет работать? https://jsfiddle.net/3k2xvt1k/#&togetherjs=FARNdVGlUO
HTML-код
<!DOCTYPE html>
<html>
<head>
<title>Hover</title>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="hover.css">
</head>
<body>
<nav class="navbar navbar-light bg-light">
<span class="brand">YORGOS LAFAZANIDIS</span>
<ul class="nav justify-content-end">
<li class="nav-item">
<a href="#">Home</a>
</li>
<li class="nav-item">
<a href="#">Culture</a>
</li>
<li class="nav-item">
<a href="#">Bundles</a>
</li>
<li class="nav-item">
<a href="#">Contact</a>
</li>
</ul>
</nav>
<section class="b">
<h1>Hero text</h1>
<p><h5>Text text text</h5></p>
</section>
<section class="b2">
<h1>Hero text</h1>
<p><h5>Text text text</h5></p>
</section>
<!-- <section class="b3">
<h1>Hero text</h1>
<p><h5>Text text text</h5></p>
</section>
<section class="b4">
<h1>Hero text</h1>
<p><h5>Text text text</h5></p>
</section>
-->
</body>
</html>
КОД CSS
.brand {
color: #706965;
font-weight: bold;
font-size: 21px;
letter-spacing: 1px;
}
.nav-item {
margin: 15px;
letter-spacing: 1px;
text-decoration: none;
}
a {
color: #706965;
}
a:hover {
text-decoration: none;
}
.b {
display: flex;
flex-direction: column;
background-color: #ccc1c1;
max-width: 25%;
min-height: 100vh;
align-items: center;
}
.b2 {
display: flex;
flex-direction: column;
background-color: #ccc1c1;
max-width: 25%;
min-height: 100vh;
}
.b3 {
display: flex;
flex-wrap: wrap;
flex-direction: column;
background-color: #ccc1c1;
max-width: 25%;
min-height: 100vh;
align-items: center;
justify-content: space-around;
}
.b4 {
display: flex;
flex-wrap: wrap;
flex-direction: column;
background-color: #ccc1c1;
max-width: 25%;
min-height: 100vh;
align-items: center;
justify-content: space-around;
}