0

我正在尝试创建一个排列,其中一个 div 中有三个 div 填充了页面的 100% 宽度。中间 div 将具有固定宽度,两个外部 div 将占据剩余空间的 50%。这可以使用 CSS 实现吗?

我已经设置了一个小提琴,它不起作用,http://jsfiddle.net/6y5hn/我尝试实现这一点,使用以下代码:

<div id="outerbox">
    <div id="leftbox">(elastic width) This should occupy all the space in the grey box to the left of the red box</div>
    <div id="centerbox">(fixed-size) should be in the center of the grey box</div>
    <div id="rightbox">(elastic width) This should occupy all the space in the grey box to the right of the red box</div>
</div>

使用 CSS:

#outerbox {
    background-color:gray;
    margin-top:50px;
    width:100%;
    height:200px;
}

#centerbox {
    background-color:red;
    margin-left:auto;
    margin-right:auto;
    float:left;
    height:100px;
    width:300px;
}

#leftbox {
    background-color:yellow;
    height:300px;
    float:left;
}

#rightbox {
    background-color:pink;
    height:300px;
    float:left;
}

詹姆士

4

3 回答 3

1

只需使用固定宽度的浮动

#fixed{float:left;width:360px;background-color:green;height:100%;color:yellow;}

#elastic{background-color:#ddd;height:100%;color:grey;}

http://jsfiddle.net/am46bm43/

于 2014-12-18T13:47:03.303 回答
1

添加width:calc(50% - 150px);#leftbox#rightbox(150px = 中心框宽度的一半)

http://jsfiddle.net/6y5hn/2/

浏览器支持:http ://caniuse.com/calc

于 2013-11-12T18:50:45.090 回答
1

不确定这是否可以仅使用 CSS 实现,但这里有一个方便的 JavaScript 代码片段,可以帮助您更有效地管理固定和基于百分比的页面宽度:

function resize() {
    // the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight

if (typeof window.innerWidth != 'undefined') {
    viewportwidth = window.innerWidth,
    viewportheight = window.innerHeight
}

// IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)

else if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0) {
    viewportwidth = document.documentElement.clientWidth,
    viewportheight = document.documentElement.clientHeight
}

// older versions of IE

else {
    viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
    viewportheight = document.getElementsByTagName('body')[0].clientHeight
}

}

resize()然后,您可以在页面加载以及页面调整大小时调用该函数。所以像:

<body onload="resize()">

从这里开始,因为您计算了页面的宽度,您可以相应地调整您的个人divs 的大小:

document.getElementById("leftbox").style.width = (viewportwidth - 300)/2 + "px";
document.getElementById("rightbox").style.width = (viewportwidth - 300)/2 + "px";
document.getElementById("centerbox").style.width = 300 + "px";

centerbox保持固定的 300 像素,而和leftboxrightbox宽度等于屏幕宽度减去 300 像素,除以 2。

于 2013-11-12T18:58:24.173 回答