gpt4 book ai didi

javascript - 将屏幕分成 3 个部分

转载 作者:行者123 更新时间:2023-12-01 01:49:03 25 4
gpt4 key购买 nike

------------------------------------------------------------------------
Header section
------------------------------------------------------------------------
Left Section | Right Section
|
Table | Table
of | of
Contents | contents
|
|
| submit

抱歉,我问的问题很新手,但我从未找到任何页面解释如何以上述格式分割屏幕。我在 stackoverflow 和其他论坛上询问了多个问题,但没有找到。

此外,右侧部分有一个名为“评论”的文本框,用户可以向其中提供输入,一旦他们点击提交按钮,他们的输入就会被捕获并显示在同一页面中。

不知道如何实现

最佳答案

通过使用flexbox,你可以简单地实现它。但有一个问题是,像 IE 11 这样的浏览器不支持 flexbox。因此,请检查兼容性问题并继续。

html, body, main {
height: 100%;
box-sizing: border-box;
margin: 0;
}

main, header, section {
text-align: center;
box-sizing: border-box;
}

main {
width: 100%;
display: flex;
flex-direction: column;
}

header {
padding: 20px;
display: flex;
flex-direction: column;
background-color: green;
}

section {
display: flex;
flex: 1;
}

section div {
width: 50%;
background-color: yellow;
}
<main>
<header>Header</header>
<section>
<div>Left</div>
<div>Right</div>
</section>
</main>

关于javascript - 将屏幕分成 3 个部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51720931/

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