IE8忽略了gwt TextArea中的空格

时间:2011-05-12 05:54:39

标签: gwt internet-explorer-8 textarea uibinder

我正在开发一个GWT项目zfapp。

我有一个UIBinder notch.ui.xml。我在这个UIBinder中的gwt TextArea中遇到了问题。显示文本时,IE8及以上版本忽略了空格!

它在IE7,Fire Fox,Chrome等方面运行良好......

由于其他技术原因,我必须在IE8模式下运行应用程序。 我该如何纠正这个问题?

我的zfapp.html

doc type

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<META http-equiv="X-UA-Compatible" content="IE=8" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    -------------------------
    -------------------------   

我的notch.ui.xml

            

    <ui:style>  
     .textarea{
      font-size: 11px;
      font-family: arial;
      background-color: #E6E6E6;    
      height:190px;
      width:385px;  
      resize: none;
     }
    </ui:style>  

<g:HTMLPanel ui:field="panel">          

  <div id="ControlContainer">
       <g:TextArea ui:field="txtNotch" styleName="{style.textarea}"></g:TextArea>
  </div>        

</g:HTMLPanel>

0 个答案:

没有答案