Es werden keine neuen Einträge mehr akzeptiert?
Knud Schröder
- css
0 Tobias Kloth0 Knud Schröder0 Struppi
Hallo,
ich habe eine gar nicht mal soo grpße css-Datei, die ich schon seit einiger Zeit ensetze.
Jetzt wollte ich an dieser CSS-Datei Änderungen vornehmen, soll heissen, neue Styles hinzufügen.
Hierzu hab ich lediglich eine bestehende Zeile kopiert(beispielsweise die td.blau {... #0000FF}), diese kopierte zeile umbenannt in td.rot und die Farbe entsprechend auf #FF0000 gesetzt (logisch ;-)).
Nur werden komischer weise keine neuen Zeilen mehr akzeptiert.
Verändere ich die Farbe einer bestehenden Zeile, wird die Änderung sofort angenommen, eine neue Zeile, egal welche, wo sie steht und wie sie heisst, wird nicht vom Browser interpretiert.
Wo können die Ursachen dafür liegen?
Gruß,
Knud
Hallo Knud,
Nur werden komischer weise keine neuen Zeilen mehr akzeptiert.
Verändere ich die Farbe einer bestehenden Zeile, wird die Änderung sofort angenommen, eine neue Zeile, egal welche, wo sie steht und wie sie heisst, wird nicht vom Browser interpretiert.Wo können die Ursachen dafür liegen?
Vielleicht irgendwelche Klammern o.ä. die fehlen oder zu viel sind? Was sagt denn der http://jigsaw.w3.org/css-validator/ dazu? So ganz ohne die Datei ist das etwas schwer zu sagen...
Grüße aus Nürnberg
Tobias
Hallo Tobias,
hier mal der Inhalt der CSS-Datei:
vielleicht finderst Du was :)
Gruß,
Knud
body { margin-left:5px; margin-right:0px; margin-top:5px; margin-bottom:0px; background-color:#000000; font-family:Verdana; font-size:10pt; color:#FFFFFF; }
p { font-family:Verdana;font-size:12pt;color:#FFFFFF;}
p.mag { font-family:Verdana;font-size:12pt;color:#E50079;}
h1 { font-family:Verdana;font-size:18pt;color:#FFFFFF;}
h1.gelb { font-family:Verdana;font-size:18pt;color:#FFFF00;}
h1.cyan { font-family:Verdana;font-size:18pt;color:#00FFFF;}
h2 { font-family:Verdana;font-size:16pt;color:#FFFFFF;}
h3 { font-family:Verdana;font-size:12pt;color:#FFFFFF;}
b { font-family:Verdana;font-size:9pt;color:#FFFFFF;}
b.black { font-family:Verdana;font-size:9pt;color:#000000;}
b.mag { font-family:Verdana;font-size:9pt;color:#E50079;}
b.red {font-family:Verdana;color:#FF0000;font-size:12pt;}
b.gelb {font-family:Verdana;color:#FFFF66;font-size:12pt;}
b.gross {font-family:Verdana;font-size:44pt;}
td { font-family:Verdana;font-size:8pt;color:#FFFFFF}
td.black { font-family:Verdana;font-size:8pt;color:#000000;}
td.gelb { font-family:Verdana;font-size:8pt;color:#FFFF66;}
tr.green { font-family:Verdana;font-size:8pt;background-color:#3C6498;color:#FFFFFF}
tr.green2 { font-family:Verdana;font-size:8pt;background-color:#3C64A8;color:#FFFFFF}
tr.green3 { font-family:Verdana;font-size:8pt;background-color:#339933;color:#FFFFFF}
tr.gelb { font-family:Verdana;font-size:8pt;background-color:#FFFF66;color:#000000}
tr.gelb2 { font-family:Verdana;font-size:8pt;background-color:#FF0000;color:#000000}
form { font-family:Verdana;font-size:8pt;color:#FFFFFF;}
a:link { font-family:Verdana;font-size:12pt;color:#FFFFFF }
a:visited { font-family:Verdana;font-size:12pt;color:#FFFFFF }
a.fav1:link { font-family:Verdana;font-size:10pt;color:#FFFFFF }
a.fav1:visited { font-family:Verdana;font-size:10pt;color:#FFFFFF }
a.fav2:link { font-family:Verdana;font-size:10pt;color:#FFFFFF;text-decoration: none; }
a.fav2:visited { font-family:Verdana;font-size:10pt;color:#FFFFFF;text-decoration: none; }
a.fav3:link { font-family:Verdana;font-size:8pt;color:#FFFFFF;text-decoration: none; }
a.fav3:visited { font-family:Verdana;font-size:8pt;color:#FFFFFF;text-decoration: none; }
a.fav4:link { font-family:Verdana;font-size:8pt;color:#FF0033;text-decoration: none; }
a.fav4:visited { font-family:Verdana;font-size:8pt;color:#FF0033;text-decoration: none; }
a.baum:link { font-family:Verdana;font-size:12pt;color:#FFFFFF;text-decoration: none; }
a.baum:visited { font-family:Verdana;font-size:12pt;color:#FFFFFF;text-decoration: none; }
a.page1:link { font-family:Verdana;font-size:12pt;line-height:22pt;color:#FFFFFF;text-decoration: none; }
a.page1:visited { font-family:Verdana;font-size:12pt;line-height:22pt;color:#FFFFFF;text-decoration: none; }
#shop {border: 2px;background: #D7CC96; color: #A91C01;width: 220px; height: 120px}
#courier {font-family:"Courier New";font-style:italic;}
#magenta {font-family:Verdana;font-size:15pt;color:#E50079;}
.magenta {font-family:Verdana;font-size:8pt;color:#E50079;}
.gelb {font-family:Verdana;font-size:8pt;color:#FFFF66;}
select {font-family:Verdana;font-size:10pt;background-color:#3C6498;color:#FFFFFF}
INPUT:focus {background-color:#3C6498;color:white;}
hier mal der Inhalt der CSS-Datei:
vielleicht finderst Du was :)
Ja, du hast CSS noch nicht verstanden.
Du musst nicht für jeden Klasse jede Eigenschaft nochmal defenieren. 'pt' ist keine Größeneinheit für den Moniter, da sie zu völlig undefinierten Größen führt.
Vielleicht http://www.jendryschik.de/wsdev/einfuehrung/ hilft dir das weiter.
Struppi.