Generated HTML depends on browser type?

  •  07-15-2005, 9:40 AM

    Generated HTML depends on browser type?

    We have tested CuteEditor for one day under "live" conditions in our intranet and have experienced that CuteEditor generate different HTML output depending on the browser type used. The differences are shown in the following table:
     
     
    Firefox
     
     
    Internet Explorer
     
     
     
     
    Hit enter key
    <br> is generated
    <p> is generated
    write „test“ italic
    <span style="font-style: italic;">test</span>
    <em>test</em>
    write „test“ bold
    <span style="font-weight: bold;">test</span>
    <strong>test</strong>
    write „test“ underline
    <span style="text-decoration: underline;">test</span>
    <u>test</u>
    left-align
    <div style="text-align: left;">test</div>
    <p align="left">test</p>
    center
    <div style="text-align: center;">test</div>
    <p align="center">test</p>
    right-align
    <div style="text-align: right;">test</div>
    <p align="right">test</p>
    justify
    <div style="text-align: justify;">test</div>
    <p align="justify">test</p>
    button “Justify None”
    automatic left-align
    <p></p>
    button "Remove format”
    no action
    ok
    Numerierte Liste
    <ol>
       <li>test</li>
    </ol>
    <ol start="1">
       <li>test</li>
    </ol>

    This is only a short part of the whole list.
     
    Is is possible to force CuteEditor to generate always the same kind of HTML output not regarding the used internet browser?
View Complete Thread