gpt4 book ai didi

css - 两栏布局,内容优先

转载 作者:太空宇宙 更新时间:2023-11-03 21:50:41 24 4
gpt4 key购买 nike

HTML:

<div id="main">
<div id="sidebar"></div>
<div id="content"></div>
</div>

CSS:

#content {
background: blue;
height: 900px;
}

#sidebar {
float: left;
width: 200px;
height: 900px;
background: red
}

JSFIDDLE:http://jsfiddle.net/aFrPc/

虽然这可行,但我希望首先列出 #content(而不是 #sidebar)。Div #content 必须填满所有剩余空间。

最终想要的结果图片:

最佳答案

UPDATED 如果他想要 sidenav 文本之前的内容文本。 Fiddle

    <div id="main">
<div id="content">
<div style="padding-left:200px">
Context
</div>
</div>
<div id="sidebar">sidebar</div>
</div><!--#main-->

#content {
background: blue;
height: 900px;
width:100%;
margin-left:-200px;
float:right;
color:#fff;
}

#sidebar {
float: left;
width: 200px;
height: 900px;
background: red;
}

关于css - 两栏布局,内容优先,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17580442/

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