1 - 如何扩展天蓝色正方形<div id="Blue">
以填充正方形,棕色?
2 - 我如何将#frame
尺寸高度与我的分辨率窗口匹配,因为它有一段时间变大,然后滑动窗口向下滚动以查看底部,有时它变小了?
感谢任何帮助
你可以在这里看到 演示 jsFiddle
相关代码。
html
<div id="frame">
<div id="inside_window">
<div id="Yellow"></div>
<div id="Green"></div>
<div id="Blue"><img src="http://www.centerwow.com/stackoverflow/shark.png" height="50" width="50" />
<img src="http://www.centerwow.com/stackoverflow/ship.png" height="100" width="120" /></div>
<div id="Red"></div>
<div id="ver"></div>
<div id="hor"></div>
<div id="ver2"></div>
</div>
风格
#Blue{
position: absolute;
min-height:100%;
min-width:75%;
-webkit-border-radius: 0px;
margin: 0 150px;
background-color: #62A9FF;
z-index:10;
display:table;
font-size:220%;
cursor: url(http://www.centerwow.com/stackoverflow/magnet.png), auto;
left:0px;
top:0px;
}