• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

W3c Validator will nicht !!??

Status
Für weitere Antworten geschlossen.

Peter

Neues Mitglied
Habe verschiedene Validator Ausprobiert,

aber scheinbar ist bei mir irgentwie der Wurm drinne....

ich kriege stehts als Fehlermeldung:

- Character encoding: unknown.....

oder
- No Character Encoding Found! Falling back to UTF-8.....

Was ist an meiner Seite falsch, das der Validator schon beim "Erstkontakt" alle Viere von sich gibt ??

Code:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
       <title>Frame- ANTE PORTAS</title>
<style type="text/css">
 
/* fuer alle Browser, die min-width verstehen */
.width {width:100%; min-width:800px; margin:0 auto;;z-index:0}
.width2 {position:absolute;bottom:0px;width:100%; min-width:800px; margin:0 auto;;z-index:10}
/* Workaround fuer IE6 Browser */
* html .minwidth {border-left:800px solid #fff; position:relative; float:left; z-index:1;}
* html .container {margin-left:-800px; position:relative; float:left; z-index:2;}
 
.content {width:100%;border:1px solid blue;text-align:center; }
 
p {margin-bottom:0; padding-bottom:1em;}
</style>
</head>
 
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0">
<div class="width">
<div class="minwidth">
<div class="container">
<div class="content">
Hier entsteht die Internetpräsenz von ANTE PORTAS
<br>
Quersäule Mit Menü
</div>
</div>
</div>
</div>
 
 
 
<div class="width">
<div class="minwidth">
<div class="container">
<div class="content">
<div style="text-align:center;border:1px solid blue;width:100px;position:absolute;left:0px">
<div>
  Säule links
</div>
<div>
oben
</div>
<div>
  Säule links
</div>
</div>
 
 
<div style="position:relative;min-width:800px;;width:100%;text-align:center;border:0px solid blue;">
<div style="text-align:center;border:1px solid blue;width:100px;position:absolute;right:0px">
<div> 
 Säule rechts
</div>
<div> 
oben
</div>
<div> 
 Säule rechts
</div>
</div>
</div>
 
<div style="position:relative;min-width:800px;;width:100%;text-align:center;border:0px solid blue;">
  <div  style="position:relative;text-align:center;border:1px solid blue;margin-left:110px;margin-right:110px">
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 <br>
  Inhalt Mitte
 </div>
</div>
 
</div>
</div>
</div>
</div>
 
<div class="width2">
<div class="minwidth">
<div class="container">
<div class="content">
<div style="text-align:center;border:1px solid blue;width:100px;position:absolute;bottom:0px;left:0px">
<div>
  Säule links
</div>
<div>
unten
</div>
<div>
  Säule links
</div>
</div>
 
<div style="position:relative;min-width:800px;;width:100%;text-align:center;border:0px solid blue;">
<div style="text-align:center;border:1px solid blue;width:100px;position:absolute;bottom:0px;right:0px">
<div> 
 Säule rechts
</div>
<div> 
unten
</div>
<div> 
 Säule rechts
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
?>
</body>
</html>
 
Die Angabe zur Zeichencodierung fehlt.

Füge mal das da in den head-Bereich ein:
Code:
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">

und ich weiß nicht, obs was ausmacht, wenn du Doctype etc. klein schreibst, schreibs mal lieber so:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
 
Der Meta machts....

Danke Dir.... "leider" geht der Validator jetzt

Ergebnis:
..... NOT Valid..... :-?

*grummel*

Jetzt gehts an Fehlersuchen;ugl
 
Einige Fehler entstanden, weil ich den Meta tag an die falsche stelle gesetzt hatte.....

jetz bemeckert er nur noch

Code:
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0">


wie kann ich das anders "verpacken" damit die Seite Valid wird ??

ohne diese Angaben wird auf der Page leider nicht korrekt positioniert....
 
Code:
<style type="text/css">
  body {
    margin:0;
    padding:0;
  }
</style>
In den Head und der Effekt müsste der gleiche sein.
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben