以下哪些不是作用在 flex 容器上的样式?
AD -> flex-grow
、flex-basis
是作用在 flex 子项上的
根据下面 HTML 结构,完成图示布局效果,编写对应 CSS 代码:
<style>
/* 代码编写区域 */
</style>
<div class="main">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
要求如下:
参考答案:
body {
margin: 0;
}
.main {
width: 100vw;
height: 100vh;
background: skyblue;
display: flex;
align-items: center;
}
.main div:nth-of-type(1) {
width: 100px;
height: 100px;
background: pink;
}
.main div:nth-of-type(2) {
flex-grow: 1;
background: greenyellow;
align-self: stretch;
}
.main div:nth-of-type(3) {
width: 100px;
height: 100px;
background: pink;
}
自个儿的答案:
body {
margin: 0;
}
.main {
height: 100vh;
background-color: #87ceec;
display: flex;
}
.main div:nth-of-type(1),
.main div:nth-of-type(3) {
width: 100px;
height: 100px;
align-self: center;
background-color: pink;
}
.main div:nth-of-type(2) {
flex-grow: 1;
background-color: #adff30;
}