作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个 div:左边一个宽度固定 (#Sidebar),右边一个填充剩余空间 (#Content)。现在,当我调整视口(viewport)大小时,我希望左侧 div (#Sidebar) 移动到右侧 (#Content) 下方。
请注意,在我的真实场景中,Sidebar 和 Content Divs 都具有动态高度。
这是我当前的代码:
HTML:
<div id="sidebar"></div>
<div id="content"></div>
CSS:
#sidebar {
float: left;
background: #CCC; height: 100px;width: 100px;}
#content {
margin-left: 110px;
background: #111; height: 100px;}
@media screen and (max-width: 500px){
#content {
width: 100%;
margin-left: 0px;
clear: both;
}}
在这里观看:http://jsfiddle.net/faz88ayh/=> 左侧的 Div (#Sidebar) 将始终位于顶部。
我想要的效果可以通过 bootstrap 实现,但它不支持固定宽度和可变宽度列的组合。=> http://jsfiddle.net/faz88ayh/1/(您必须调整结果窗口的大小才能看到效果)
请帮忙!
最佳答案
在 fiddle 中更改 css
#sidebar {
float: left;
background: #CCC;
height: 100px;
width: 100%
}
#content {
background: #111;
height: 100px;
width:100%;
}
关于html - 左 Div 应移至右 Div 下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28779950/
我是一名优秀的程序员,十分优秀!