Hallo,
habe eine css Datei geschrieben, und habe mal ein paar fragen bin eben noch Anfänger.
Warum sieht die Navigation Leiste/und der Text im main im Firefox etwas anders aus als in IE.
Warum muss ich in css navigation extra die breite angeben und im Header nicht.
Bemerkt Ihr noch Fehler in der css
mfg
elo
/* DIV umspannt alles */
#wrapper {
width: 780px;
background-color: white;
margin: 0 auto;
text-align: left; /* linksbündig */
}
/* DIV für Logo */
#header {
height: 80px; /* Höhe */
padding: 5px; /* Füllung */
background-color: gray;
}
/* Überschrift 1 in diesem Header */
#header h1 {
font-variant: small-caps; /* Kapitälchen */
color: white; /* in weiß */
}
/* DIV für Hauptbereich */
#main {
background-color: white;
padding: 40px;
margin: 0 0 0 0px;
}
/* Überschrift 1 im Hauptbereich */
#main h1 {
color: #1285DA;
}
/* DIV für Menübereich */
#navigation {
background-color: #70A9D8;
width: 780px;
height: 60px;
float: left;
}
#navigation li {
display: inline;
}
#navigation ul {
list-style-type: none;
}
habe eine css Datei geschrieben, und habe mal ein paar fragen bin eben noch Anfänger.
Warum sieht die Navigation Leiste/und der Text im main im Firefox etwas anders aus als in IE.
Warum muss ich in css navigation extra die breite angeben und im Header nicht.
Bemerkt Ihr noch Fehler in der css
mfg
elo
/* DIV umspannt alles */
#wrapper {
width: 780px;
background-color: white;
margin: 0 auto;
text-align: left; /* linksbündig */
}
/* DIV für Logo */
#header {
height: 80px; /* Höhe */
padding: 5px; /* Füllung */
background-color: gray;
}
/* Überschrift 1 in diesem Header */
#header h1 {
font-variant: small-caps; /* Kapitälchen */
color: white; /* in weiß */
}
/* DIV für Hauptbereich */
#main {
background-color: white;
padding: 40px;
margin: 0 0 0 0px;
}
/* Überschrift 1 im Hauptbereich */
#main h1 {
color: #1285DA;
}
/* DIV für Menübereich */
#navigation {
background-color: #70A9D8;
width: 780px;
height: 60px;
float: left;
}
#navigation li {
display: inline;
}
#navigation ul {
list-style-type: none;
}