gpt4 book ai didi

html - 如何在媒体查询中的页脚下设置页眉

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

我有页眉、一些部分和一个页脚。当我在电话媒体查询中(0 到 480 像素)时,我想将页眉的位置更改为在页脚下方。是否可以?

最佳答案

你可以使用display: flex; flex-direction: column; 在父级上,然后使用 order 属性在媒体查询中重新组织。

body {
display: flex;
flex-direction: column;
}

@media (max-width: 480px) {
header {
order: 1;
}
}
<header>header</header>
<section>section</section>
<section>section</section>
<section>section</section>
<footer>footer</footer>

关于html - 如何在媒体查询中的页脚下设置页眉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44791634/

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