我有一個建立這樣的對話:生成表對話框內容滾動
<div style="position:fixed; display:block; width:600px; top:0; left:50%;margin-left:-275px;">
<table style="width:100%;" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>
<div class="modal-header">
<span class="close">×</span>
<h2>Modal Header</h2>
</div>
</td>
</tr>
<tr>
<td style="background-color:gray;">
<table>
<tbody>
<tr>
<td>
<div class="modal-body">
<p>variable length really long stuff</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<div class="modal-footer">
<h3>Modal Footer</h3>
</div>
</td>
</tr>
</tbody>
</table>
</div>
眼下,對話框的內容過長的頁面,因爲該位置是固定的,用戶永遠不能向下滾動到對話框的底部。我希望只有當內容的長度超過視口區域時才能滾動內表 - 但我總是希望頁眉和頁腳可見。
Here is a code sample.我該如何做到這一點?
你想讓模態始終保持100%的高度嗎?頁眉和頁腳固定高度? – Stickers
@Pangloss模式只能與其中的內容一樣高,但如果內容不適合放在一個頁面中,則該內容應該可滾動。是的,頁眉和頁腳是固定的高度,但模式內容取決於服務器。 –