1

我很困惑在 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;"> 

我该如何解决这个问题?

4

2 回答 2

0

确保您在内容页面中使用 XHTML - 兼容的 Doctype - 这应该会有所帮助。

于 2010-07-07T10:40:19.933 回答
0

我从 Telerik 团队询问了这个问题,他们在新版本中告诉我这个问题已经解决了。请查看我的问题日期和这个答案日期......
我认为这个问题已经在较新的版本中解决了/但是这个问题没有什么可解决的用 Doctype 做...

于 2011-05-15T13:31:48.703 回答