【发布时间】:2021-03-19 00:29:07
【问题描述】:
PS>我不在乎颜色!
片段:
body {
display: flex;
flex-direction: column;
margin: 0;
}
.container {
display: flex;
flex: 1;
justify-content: center;
}
nav {
flex: -1;
}
.A {
background-color: red;
width: 300px;
height: 700px;
}
main {
flex: 1;
}
.B {
background-color: wheat;
height: 350px;
width: 300px;
}
.C {
background-color: lightblue;
height: 350px;
width: 300px;
}
.D {
background-color: green;
width: 300px;
height: 700px;
}
p {
text-align: center;
}
<body>
<div class="container">
<div class="A">
<p>div klasy A</p>
</div>
<div class="B">
<p>div klasy B</p>
</div>
<div class="C">
<p>div klasy C</p>
</div>
<div class="D">
<p>div klasy D</p>
</div>
</div>
</body>
【问题讨论】: