我正在我的网页上以特定的div
. 此内容将被缩放以完全显示在 中div
,我希望允许用户放大此div
. 因为这个是手机版的,怕是太小了。屏幕的其余部分应保持不变。
HTML:
<div id="container">
<div id="some_static_part"></div>
<div id="dynamic_part"></div>
<div id="some_other_static_part"></div>
</div>
CSS:
#container{
width:100%;
height:100%;
}
#some_static_part{
width:100%;
height:25%;
}
#dynamic_part{
width:50%;
height:75%;
}
#some_other_static_part{
width:50%;
height:75%;
}