gpt4 book ai didi

css - 带有 flex-direction 列的父容器和带有 flex-direction 行的子容器

转载 作者:行者123 更新时间:2023-12-04 10:24:35 29 4
gpt4 key购买 nike

我有一个标题元素,我想显示 flex 列,这样我就可以将 .container div 垂直居中。这工作正常。然后我需要 .container 中的元素在 1200px 之间以均匀的间距连续 flex 。你不能在不同方向的柔性容器中做柔性容器吗?请在下面查看我的 CSS:

header {
height: 50px;
display: flex;
flex-direction: column;
justify-content: center;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

最佳答案

是的,Flexbox 非常适合嵌套容器。为了说明我的观点,这里有一个使用嵌套 Flexbox 的基本 header 示例。

header {
width: 100vw;
top: 0;
left: 0;
height: 50px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

header .image--container {
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0.5rem;
flex: 1 1 20%;
}

header .image--container img {
width: 100%;
display: block;
height: auto;
}

header .menu--container {
flex-direction: row;
justify-content: flex-end;
align-items: center;
flex: 1 1 70%;
}

header .menu--container .parent--items {
display: flex;
flex-direction: column;
width: calc(100% / 4);
}

header .avatar--container {
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0.5rem;
flex: 1 1 10%;
}

关于css - 带有 flex-direction 列的父容器和带有 flex-direction 行的子容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60679810/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com