gpt4 book ai didi

html - 两个之间的一个 div,两边的两个都需要碰到浏览器的边缘

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

还希望在中间的 div 和两侧的两个 div 之间留出一个小空间。中间栏需要固定宽度。

这是我到目前为止想出的,看起来有点乱:

<!DOCTYPE html>
<html>
<head>
<style>

#container {
width: auto;
height: 50px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}
#mainBar {
position: relative;
z-index: -1;
width: 406px;
height: 50px;
margin-left: auto;
margin-right: auto;
background-color: white;
}
#mainBarInner {
position: relative;
z-index: 1;
width: 400px;
height: 50px;
margin-left: auto;
margin-right: auto;
background-color: red;
}
#leftBar {
position: absolute;
z-index: -2;
width: 40%;
height: 50px;
left: 0px;
background-color: red;
}
#rightBar {
position: absolute;
z-index: -2;
width: 40%;
height: 50px;
top: 50px;
right: 0px;
background-color: red;
}

</style>
</head>
<body>

<div id="container">
<div id="leftBar"></div>
<div id="mainBar"><div id="mainBarInner"></div></div>
<div id="rightBar"></div>
</div>

</body>
</html>

谁能确认是否有更好的方法来做到这一点,而无需将 div 左右对齐并置于中间 div 下方?

演示文件:FIDDLE DEMO

最佳答案

这是一种方法,只使用宽度的百分比,这样它会非常灵敏。您可能需要包含一个 Reset.css 文件,然后手动添加边距/填充。 (这些百分比可以根据您的喜好进行调整)。 Fiddle Here .

<head>
<style type="text/css">

#container {
width: 100%;
height: 50px;
margin-top: 50px;
}
#mainBar {
width: 39.5%;
height: 50px;
display: inline-block;
background-color: red;
}
#leftBar, #rightBar {
display: inline-block;
width: 29.5%;
height: 50px;
background-color: red;
}

</style>
</head>
<body>

<div id="container">
<div id="leftBar"></div>
<div id="mainBar"></div>
<div id="rightBar"></div>
</div>

</body>

我想确定您希望中栏和侧栏在不同高度处做什么也很重要……消失、向上或向下滑动、按百分比调整。你想让中间的栏是固定宽度吗?或者在较小的屏幕上是百分比,但在较大的屏幕上是最大宽度?通过一些更具体的信息,我们可以提供更具体的答案。

关于html - 两个之间的一个 div,两边的两个都需要碰到浏览器的边缘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25310892/

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