gpt4 book ai didi

css - 如何使 div 缩放到浏览器宽度的 100%?

转载 作者:太空狗 更新时间:2023-10-29 14:46:07 25 4
gpt4 key购买 nike

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

侧边栏的宽度固定为 100px。如何使内容的宽度为浏览器宽度的 100%?

http://jsfiddle.net/chickendance/qQQTU/1/

最佳答案

你可以用简单的 CSS 做到这一点:

#sidebar {
float: left;
width: 100px;
}

#content {
margin-left: 100px;
}

使用 wrapper div 更新:

HTML

<div id="wrapper">
<p>wrapper</p>
<div id="sidebar">sidebar</div>
<div id="content">content</div>
<p>wrapper</p>
</div>

CSS

* {
/* reset */
margin: 0;
padding: 0;
}
html,
body {
/* for demo purposes only */
height: 100%;
}
#wrapper {
/* for demo purposes only */
background: rgba(200, 200, 200, 0.6);
height: 100%;
}
#sidebar {
float: left;
width: 100px;

/* for demo purposes only */
background: rgba(200, 200, 200, 0.6);
height: 50%;
}
#content {
margin-left: 100px;

/* for demo purposes only */
background: rgba(200, 200, 200, 0.9);
height: 50%;
}

工作示例:http://jsfiddle.net/kboucher/FK2tL/

关于css - 如何使 div 缩放到浏览器宽度的 100%?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16723522/

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