This worked prior to moving to 6.6 ...
In my HTML I create an instance if the editor with the height declared as 7 em:
<CE:Editor id="Editor1" AutoConfigure="Simple" runat="server" Height="7em" ></CE:Editor><br />In Chrome there is no text area, just the header and footer bars. When i do an Inspect Element on the ediort the height is 7px.
<table cellspacing="0" cellpadding="0" _iscuteeditor="True" id="CE_Editor1_ID" style="background-color: rgb(244, 244, 243); border-top-color: rgb(221, 221, 221); border-right-color: rgb(221, 221, 221); border-bottom-color: rgb(221, 221, 221); border-left-color: rgb(221, 221, 221); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; height: 7px; width: 780px; ">
In Firefox the editor looks a little small, only 3 lines of text fit in the editor window, and the height is 112 px:
<table id="CE_Editor1_ID" cellspacing="0" cellpadding="0" style="background-color: rgb(244, 244, 243); border-color: rgb(221, 221, 221); border-width: 1px; border-style: solid; height: 112px; width: 780px;" _iscuteeditor="True">
in IE, the editor window is much larger, 6 lines of text fit into the text area, and the height is defined as 7em:
<table cellspacing="0" cellpadding="0" _IsCuteEditor="True" id="CE_Editor1_ID" style="background-color:#F4F4F3;border-color:#DDDDDD;border-width:1px;border-style:Solid;height:7em;width:780px;">
Why is this not consistant?