我正在制作一个3列布局,带有两个固定宽度的侧边栏(左侧和右侧)和一个流体中心。我已经关注了A List Apart的Holy Grail article,虽然这在大多数浏览器中运行良好,但我在Internet Explorer 7 +中遇到了一些问题。
IE 7+的问题实际上不是源于这种技术,而是源于页面以怪异模式呈现的事实。但是,如果我按照标准兼容模式进行渲染,许多过时的元素就会被取代,需要完全重写。
鉴于这篇文章可以追溯到几年,这是关于这个主题的最新参考吗?或者我应该采用不同的技术吗?
非常感谢任何有关最佳方法的见解。
答案 0 :(得分:20)
浮动列真的没有意义。
HTML:
<div id="wrapper">
<div id="left"></div>
<div id="center"> Center content</div>
<div id="right"></div>
</div>
CSS:
#left {
position:absolute;
left:0;
width:50px;
height:100%;
background-color:pink;
}
#center {
height:100%;
margin: 0 50px;
background-color:green;
}
#right {
position:absolute;
right:0;
top:0;
width:50px;
height:100%;
background-color:red;
}
body, html, #wrapper {
width:100%;
height:100%;
padding:0;
margin:0;
}
答案 1 :(得分:4)
绝对定位适用于全宽度页面,但是当您有一个居中的固定宽度时。想出了一个基于flex-box的解决方案,可以在IE8 +中运行。 flexie polyfill用于旧版浏览器
请参阅http://jsfiddle.net/lorantd/9GFwT/10/
<div id="header"></div>
<div id="main">
<div id="menu"></div>
<div id="content"></div>
<div id="summary"></div>
</div>
<div id="footer"></div>
#header {
background-color: #9B9EA7;
height: 70px;
}
body {
min-width: 500px;
max-width: 630px;
margin-right: auto;
margin-left: auto;
display: block;
}
#main {
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
display:-webkit-box; /* Safari and Chrome */
display:box;
width: 100%;
}
#menu {
background-color: #D42108;
width: 120px;
margin-top: 10px;
margin-right: 10px;
}
#content {
background-color: #FFD700;
height: 500px;
margin-top: 10px;
margin-right: 10px;
-webkit-box-flex: 2; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex: 2; /* OLD - Firefox 19- */
width: 60%; /* For old syntax, otherwise collapses. */
-webkit-flex: 2; /* Chrome */
-ms-flex: 2; /* IE 10 */
flex: 2;
}
#summary {
width: 30px;
margin-top: 10px;
background-color: #9B9EA7;
}
#footer {
background-color: #353535;
width: 100%;
height: 50px;
margin-top: 10px;
clear: both;
}
答案 2 :(得分:0)
我相信这在大多数情况下都很有用。
请参阅以下链接。
http://jsfiddle.net/ykAPM/278/
#left {
position:fixed;
left:0;
width:50px;
height:100%;
background-color:pink;
}
#center {
margin: 0 50px;
background-color:green;
overflow:auto
}
#right {
position:fixed;
right:0;
top:0;
width:50px;
height:100%;
background-color:red;
}
body, html, #wrapper {
width:100%;
height:100%;
padding:0;
margin:0;
}
#test{
height:1000px;
}