我在使用高度和宽度(%)来获取父窗口的大小时遇到了问题 请参阅以下链接:http://liveweave.com/GZP43q
我缺少什么,怎么做才能让它发挥作用 如何使画布匹配父宽度的宽度,我找不到如何解决它,认为有点棘手的CSS问题
HTML CODE
<script src="http://fabricjs.com/lib/fabric.js"></script>
<div class="wrap">
<table align="center" width="100%" border="1">
<tr valign="top">
<td width="10%">
left
</td><td width="80%">
<div id="content">
<table border="1" width="100%">
<tr><td style="border:1px solid red">
<canvas id="canvas" width="100%" height="100%">
</canvas>
<div id="canvas-drop-area"></div>
</td></tr>
<tr><td style="border:1px solid red">
<canvas id="canvas1" width="320" height="256">
</canvas>
<div id="canvas-drop-area1"></div>
</td></tr>
</table>
</div>
</td><td width="10%">
right
</td></tr>
</table>
</div>
CSS代码:
.wrap{
margin: 0 auto;
width: 400px;
}
#content{
float:left;width: 100%;
}
#canvas{
width:100%;
height:100%;
overflow:hidden;
float:left;
border:1px solid #000000;
}
#canvas1{
width:320px;
height:256px;
overflow:hidden;
float:left;
border:1px solid #000000;
background-color: yellow;
}
答案 0 :(得分:0)
当您在css中使用%
时,它始终与父高度/宽度相关。因此,您需要为所有父元素添加高度。对于content
和wrap
一个height
,width
和height
到body
和html
。