KebdnK: IE6 macht Probleme beim Markieren von Text

Beitrag lesen

Hallo Leute,
der Internet-Explorer 6 macht Probleme beim Markieren von Text.
Wenn die Doctype-Definition weggelassen wird, passt es. Leider brauche ich die aber, da sonst das falsche Box-Modell verwendet wird und ich keine verschiedenen CSS-Dateien pflegen möchte.

Hier der Quelltext:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
 <title>VPNview 2</title>
 <style type="text/css">
 <!--
  div.newsalone {
   position: absolute;
   display: block;
   top: 5%;
   left: 30%;
   width: 40%;
   font-size: 20px;
  }

div.newstitle {
   position: relative;
   display: block;
   padding: 10px;
   width: 100%;
   height: 40px;
   border: 1px solid black;
   font-size: 16px;
   font-weight: bold;
   text-align: left;
  }

div.newscontent {
   position: relative;
   display: block;
   padding: 10px;
   width: 100%;
   height: 380px;
   text-align: left;
   font-size: 12px;
   border: 1px solid black;
   border-top: 0px;
   overflow-y: scroll;
   overflow-x: hidden;
  }

div.newsnext {
   position: relative;
   display: block;
   width: 100%;
    margin-top: 20px;
   padding-left: 10px;
   padding-right: 10px;
   font-size: 12px;
   text-align: right;
  }
  //-->
  </style>
</head>
<body>
<div class="newsalone">
  <div class="newstitle">News</div>
  <div class="newscontent">
    <h2>Keine News vorhanden</h2>
  </div>
  <div class="newsnext">
    <form id="weiter" action="index.php" method="post">
      <input type="hidden" name="order" value="main_desktop" />
      <input type="hidden" name="sub_order" value="show_desktop" />
      <input type="hidden" name="hash" value="30393031323030377c333338337c317c746975657c317c317c317c317c317c317c31" />
      <input type="submit" class="submit" value="Weiter" />
    </form>
  </div>
</div>
</body>

</html>

Vielen Dank im Voraus.

KebdnK