sindel: Was bewirken DOCTYPE und entsprechende URL wirklich?

Beitrag lesen

Hallo,
eine Seite wird in IE 6.0 vollkommen anders dargestellt, je nachdem ob sie mit:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
oder mit:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
beginnt. Warum ist das so und was bewirkt die o.g. URL wirklich?

Beispiel 1:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
 <head>
  <title>test mit URL</title>
 </head>
 <body bgcolor="#ffffff">
  <table border="1" cellpadding="0" cellspacing="0" width="100%" height="100%">
   <tr>
    <td> 
     <table border="0" cellpadding="0" cellspacing="0" width="100%" height="50" bgcolor="red">
      <tr>
       <td> </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <p></p>
 </body>
</html>

Beispiel 2:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
  <title>test ohne URL</title>
 </head>
 <body bgcolor="#ffffff">
  <p></p>
  <table border="1" cellpadding="0" cellspacing="0" width="100%" height="100%">
   <tr>
    <td> 
     <table border="0" cellpadding="0" cellspacing="0" width="100%" height="50" bgcolor="red">
      <tr>
       <td> </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
 </body>
</html>

Vielen Dank und Gruß
Sindel