C
catharis
Guest
Guten Abend,
ich bin gerade ein bisschen am CSS probieren, und wollte mir meine Seite mal im IE angucken, und was muss ich sehen? >_>
Ein total zerlegtes Layout o_o
Im FireFox sieht alles in Ordnung aus. Und da ich beim aufbau nicht im IE sondern nur im Fox geguckt hab, is mir auch nicht aufgefallen seid wann das so kaputt ist :uhm:
So siehts im Fox aus:
Hab auch mal den Code vom CSS rein:
Jetz meine Frage, wodran kann das liegen?
So gut kenn ich mich mit Css nich aus
Bin danbar über jede Hilfe =D
Lg Cath.
ich bin gerade ein bisschen am CSS probieren, und wollte mir meine Seite mal im IE angucken, und was muss ich sehen? >_>
Ein total zerlegtes Layout o_o
Im FireFox sieht alles in Ordnung aus. Und da ich beim aufbau nicht im IE sondern nur im Fox geguckt hab, is mir auch nicht aufgefallen seid wann das so kaputt ist :uhm:
So siehts im Fox aus:
Hab auch mal den Code vom CSS rein:
Code:
* {
margin: 0;
padding: 0;
}
/* Allgemeine Formatierung */
body {
background-color: #333;
font-size: 0.9em;
font-family: Arial, Helvetica, sans-serif;
color: #333;
}
h1 {
font-size: 1.3em;
color: Lime;
font-weight: bold;
padding: 5px 0px;
}
h2 {
font-size: 1.1em;
color: #71E600;
font-weight: bold;
padding: 5px 0px;
}
a {
color: Silver;
text-decoration: none;
}
a:hover {
color: #71E600;
}
/* div container */
#site {
position: relative;
background-color: Gray;
padding-top: 1.3em;
width: 1000px;
margin: 0 auto;
border-left: 1px solid Silver;
border-right: 1px solid Silver;
border-top: 2px solid Silver;
}
#header {
background-color: #5FC100;
background: url(../img/head.jpg) no-repeat;
width: 850px;
height: 100px;
float: right;
border-bottom: 1px solid Silver;
border-top: 5px solid Silver;
}
#logo a{
background-color: Green;
background: url(../img/logo.jpg) no-repeat;
width: 150px;
height: 100px;
float: left;
border-bottom: 1px solid Silver;
border-top: 5px solid Silver;
}
#logo a:hover {
background: url(../img/logo_hover.jpg) no-repeat;
}
#main{
width: 1000px;
}
#menu{
display: inline;
background-color: Silver;
width: 150px;
line-height: 3em;
color: #333333;
float: left;
text-align: center;
padding: 0px 0px 1px 0px;
}
#menu li {
display: block;
}
#menu a {
display: block;
color: #333333;
line-height: 3em;
width: 150px;
}
#menu a:hover {
color: Lime;
background-color: Grey;
}
#content {
margin-left: 150px;
margin-right: 175px;
padding: 0px 10px 10px 10px;
}
#right {
float: right;
width: 150px;
color: Silver;
background-color: #464646;
padding: 0px 10px 10px 10px;
}
#nav {
position: absolute;
top: 0;
right: 0;
}
#nav li {
display: inline;
}
#nav a {
display: block;
color: #5FC100;
padding: 1px 5px;
text-align: right;
float: right;
line-height: 1.3em;
}
#nav a:hover {
color: #464646;
background-color: Silver;
}
So gut kenn ich mich mit Css nich aus
Bin danbar über jede Hilfe =D
Lg Cath.