我很困惑在 A RadWindow 中设置 DIV 和 FIELDSET 的宽度和高度。当我使用以下代码在 Firefox 中浏览我的 radwindow 时:
setTimeout(function() { GetRadWindow().autoSize(true) }, 500);
在 IE 8 中一切正常 - 但在 Firefox 中我有滚动条。
我怎样才能删除它们?
我的 div 和 fieldset 的宽度和高度如下:
<style type="text/css">
html, body, form
{
padding: 0;
margin: 0;
height: 100%;
background-color: #f2f2de;
}
fieldset
{
height: 581px;
}
* + html fieldset
{
height: 585px;
width: 840px;
}
<div style="width: 850px; height: 600px;">
我该如何解决这个问题?