Средний div фиксированной ширины и два div эластичной ширины по обе стороны от него

Я пытаюсь создать механизм, в котором есть три элемента div, которые занимают 100% ширины страницы. Средний блок будет иметь фиксированную ширину, а два внешних блока будут занимать 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;
}

Джеймс

3 ответа

Решение

Не уверен, что это возможно, используя только 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()">

Отсюда, потому что у вас есть расчетная ширина страницы, вы можете изменить размер вашего индивидуального divс соответственно:

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 пикселей, в то время как leftbox а также rightbox иметь ширину, равную ширине экрана минус 300 пикселей, деленную на два.

Добавлять width:calc(50% - 150px); в #leftbox а также #rightbox (150 пикселей = половина ширины центральной коробки)

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

поддержка браузера: http://caniuse.com/calc

Просто используйте поплавок с фиксированной шириной

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

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

http://jsfiddle.net/am46bm43/

Другие вопросы по тегам