0
Chrome 51.0.2704.103
とFirefox 47.0.1
のコードスニペットの動作が異なります。幅が100%でdiv内の絶対位置が
これがなぜ発生するのか説明してください。どこで行動が正しいのか、そうでないのはなぜ、そう思うのか。ありがとう。
div,
td {
border: 1px solid black;
}
.container {
position: absolute;
}
.w100Pc {
width: 100%;
}
.nowrap {
white-space: nowrap;
}
<div class="container">
<div>Modal dialog header</div>
<table>
<tr>
<td class="w100Pc">rest of space column</td>
<td class="nowrap">content based width column</td>
</tr>
</table>
<div>Here goes main content what should stretch "container" width</div>
<div>Modal dialog footer</div>
</div>
あなたは何が起こると思いますか? –
主な考え方は、モーダルダイアログ内のスペースを2つの列に分割することです。 2番目の列のためのスペースは、その内部内容から相対的に計算されます。最初の列のスペースはモーダルダイアログの残りの幅です – Mrusful
なぜテーブルですか? –