gpt4 book ai didi

css - 基础简单的 Flex 布局

转载 作者:行者123 更新时间:2023-11-28 01:15:44 24 4
gpt4 key购买 nike

你能帮忙解决以下问题吗?

<div id="stage" class="flex-container">
<header>
<b>Top content</b>
</header>
<aside>
Right
</aside>
<footer>
Footer
</footer>
</div>

我希望将 22% 的宽度和 88% 的高度安装在右侧。我想让页眉开始 88% 宽度和 88% 高度安装到顶部,页脚明显是:22 高度和 100% 宽度安装到地板上;)

我已经为这个问题纠结了一天。希望你能帮帮我。

最佳答案

啊啊啊,我刚刚找到了一个解决方案!:如果你问我的话,很简单。

body,html
{
height:100%;
width: 100%;
margin: 0;
}
#stage
{
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
min-height: 100vh;
}
aside
{
background-color: red;
height: 88%;
position: absolute;
right: 0;
top: 0;
width: 12%;
}
footer
{
background-color: #ffc107;
bottom: 0;
color: #333;
height: 12%;
position: absolute;
width: 100%;
}
header
{
background-color: #3F51B5;
color: #fff;
height: 88%;
left: 0;
top: 0;
position:absolute;
width:88%;
}

关于css - 基础简单的 Flex 布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35766150/

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