作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
还希望在中间的 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/
这是我的jsfiddle:http://jsfiddle.net/seekpunk/s54RM/ 正如你所看到的,当圆圈击中 x 边框时,它卡在那里,我应该如何修改我的更新函数以使其在击中边框时向后移
我是一名优秀的程序员,十分优秀!