[HTML] Stretching Problem!

S

ShaÐe45

Gast
Hab das Prob selber in den Griff bekommen, trotzdem thx
 
Zuletzt bearbeitet:
Die CSS Datei solltest du schon dazu posten

HTML:
body
{
    background-color: #ffffff;
    color: #000000;
    font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
    font-size: medium;
    margin: 5px;
    padding: 0;
}

h1
{
    font-size: x-large;
    font-weight: bold;
    margin: 0;
    padding: 0 0 5px 0;
}

h2
{
    font-size: large;
    font-weight: bold;
    margin: 0;
    padding: 0 0 5px 0;
}

hr
{
    background-color: #000000;
    border-style: none;
    color: #000000;
    height: 1px;
    margin: 20px 150px;
}

pre
{
    font-family: "Lucida Console", "Courier New", Courier, monospace;
    font-size: medium;
    margin: 10px 0;
}

table
{
    border-collapse: collapse;
    border-color: #000000;
    border-style: solid;
    border-width: 1px;
    margin: 0;
    padding: 0;
    width: 75%;
}

td
{
    border-color: #000000;
    border-style: solid;
    border-width: 1px;
    font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
    font-size: medium;
    padding: 2px;
    text-align: left;
}

th
{
    background-color: #cccccc;
    border-color: #000000;
    border-style: solid;
    border-width: 1px;
    color: #000000;
    font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
    font-size: medium;
    font-variant: small-caps;
    font-weight: bold;
    padding: 2px;
    text-align: left;
    white-space: nowrap;
    width: 100px;
}
 
PHP:
body
{
    background-color: #000000;
    color: #FFFFFF;
    margin: 0px;
}
ungefähr so sollten die CSS-Werte auf jeder Seite für das <body>-Element sein!
 
Hier ist mein CSS:

PHP:
body {
	font: 10px verdana, tahoma, arial, sans-serif;
	background-color: #000000;
	margin:0px;

}

Der Fehler muss irgendwie in der index liegen, ich weiss nur nich wo... :(
 
Zuletzt bearbeitet:
Zurück
Oben