質問の表現が正しくない、または明確でない場合は、お詫び申し上げます。説明させてください。
真ん中のdiv内に4つのdivがあります。以下のようになります。
-------------- ----------- -------------
|custExpBox || techSumBox| |escalationBox|
------------- | | -------------
-------------- | |
|workaroundnBox|| |
------------- -----------
しかし、代わりに私は得る:
------------- ----------- -------------
|custExpBox || techSumBox| |escalationBox|
------------- | | -------------
| |
| |
------------- -----------
|workaroundBox|
-------------
これは、HTMLコードコードの簡略版です。
<div id="middle">
<div id="custExpBox"></div>
<div id="techSumBox"> </div>
<div id="escalationBox"> </div>
<div id="workaroundBox"> </div>
</div>
CSSコード:
#middle{
width:100%;
margin-top:16px;
margin-bottom: 5px;
display:inline-block;
border:1px dashed black;
}
#custExpBox{
display: inline-block;
float:left;
width:40%;
background-color:#EAF2D3;
line-height:17px;
padding:3px;
height:200px;
overflow:scroll;
}
#techSumBox{
display: inline-block;
float:left;
width:30%;
background-color:#EAF2D3;
line-height:17px;
padding:4px;
height:406px;
overflow:scroll;
border:1px solid black;
overflow:auto;
}
#escalationBox{
margin-top:16px;
display: inline-block;
float:right;
width:18%;
border:1px solid black;
background-color:#E9EBA9;
line-height:17px;
border-radius:5px;
padding:4px;
}
#workaroundBox{
display: inline-block;
float:left;
width:40%;
background-color:#EAF2D3;
line-height:17px;
padding:3px;
height:198px;
overflow:scroll;
margin-top:6px;
}
ヘルプに感謝します。ありがとう!
編集1:techSumBox divの高さをcustExpBoxと同じサイズに変更すると、希望どおりに表示されることをお知らせします。問題は、高さがcustExpBoxdivよりも大きい場合です。