0
<img id='imgT' src="...">

    <div id="divL"></div>
    <div id="divR">
        <div id='chapter'>
            aaaaaaaaa<br>
            aaaaaaaaa<br>
            aaaaaaaaa<br>
            aaaaaaaaa<br>
            .....
            .....
    </div>
    </div>

css

html { height: 100%; }
body{
    height: 100%;
    max-width:1024px;
}
#imgT{
    width:100%;
    border:thin solid blue;
    display:block;
}
#divL{
    width:20%;
    height: 100%;
    background:#008080;
    float:left;
}
#divR{
    width:80%;
    height: 100%;
    background:blue;
    float:left;
}

在 div 中达到一定数量的行后chapter-divLdivR停止拉伸到 100% 的高度!?

你可以在这里看到

4

1 回答 1

1

使用 css 表。

小提琴

.wpr
{
    display: table;
    width: 100%;
}
#divL{
    width:20%;
    height: 100%;
    background:#008080;

    display:table-cell;
}
#divR{
    width:80%;
    height: 100%;
    background:blue;

    display:table-cell;
}
于 2013-10-02T07:50:44.253 回答