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

CSS Stylesheet - Farben und Rahmen werden in Firefox nicht angezeigt

Status
Für weitere Antworten geschlossen.

littnis

Neues Mitglied
Hallo zäme

Habe einen Code, der in HTML funktioniert aber in Firefox nicht.

Kann mir jemand sagen warum?

Code:
<style type="text/css">
span { }
div { }
*.bold { font-weight:bold; }
a { color:#0000FF; }
a:link { color:#0000FF; }
a:visited { color:#0000FF; }
a:hover { color:#FF0000; }
h1 { font-size: 17pt; }
p { font-size: 10pt; }
td { font-size:9pt; background-color:#CCFFCC; border-color:#333333; border-style:solid; border-width:1px; }
td.inv { font-size:9pt; background-color:#FFFFFF; border-width:0px; }
th { font-size:12pt; text-align:left; background-color:#333333; font-weight:bold; color:#FFFFFF; text-decoration:none; }
tr { padding:3px;}
table { margin:15px; border-collapse:collapse; padding:50px; width:97%; }
body { font-family: Arial,Helvetica,sans-serif;font-size: 8pt; text-decoration:none; padding:0px;}
 
<!--
#useall { position:absolute; top:0px; left:0px; width:100% height:100% background-color:#DD00DD; color=#000000}
#head { position:relative; top:0px; left:0px; width:191px; height:19px; z-index:3; background:#CCEDDF; border:solid 1px #7FD2AE; margin:5px; text-align:left; padding:0 }
#fhead { position:relative; top:0px; left:0px; width:191px; height:19px; z-index:3; background:#00A65D; border:solid 0px; margin:5px; color:#FFFFFF; font-weight:bold; font-size: 9pt; padding-left:5px; padding-top:3px; padding-bottom:3px; }
#sel { position:relative; top:0px; left:0px; width:44px; height:19px; z-index:3; background:CCEDDF; border:solid 1px #7FD2AE; margin-left:5px; margin-bottom:5px; text-align:center }
#content2 { position:relative; width:191px; height:19px; background:#CCEDDF; border:solid 1px #7FD2AE; margin:5px; padding-left:5px; padding-top:3px; padding-bottom:3px;}
#content { position:relative; top:0px; left:0px; width:191px; height:19px; z-index:3; background:#CCEDDF; border:solid 1px #7FD2AE; margin-top:0px; margin-left:5px; margin-bottom:5px; padding-left:5px; padding-top:3px; padding-bottom:3px; }
#block { position:absolute; top:0px; left:0px; width:201px; background:FFFFFF; margin:0; padding:0; }
#spack { position:relative; top:-20px; left:0px; width:1015px; height:21px; z-index:3; background:#E5E5E5; border:solid 0px #000000;}
#titel { position:relative; top:-20px; left:0px; font-family: Arial,Helvetica,sans-serif;font-size: 17pt; text-decoration:none;}
#allbody { position:absolute; top:0px; left:0px; margin:0px; width=100%;}
-->
</style>
Im HTML wird die Datei wie folgt referenziert:

<link rel="stylesheet" type="text/css" href="LINK" target="_blank">

Danke für die Antwort.
 
Zuletzt bearbeitet von einem Moderator:
<link rel="stylesheet" type="text/css" href="LINK" target="_blank">
Statt LINK mußt du den Dateinamen angeben. Das target="_blank" kannst du dir sparen.
Code:
<link rel="stylesheet" type="text/css" href="homepage.css">
Außerdem sollten in der CSS-Datei nur Formatierungen stehen. Dieses
gehört da nicht rein:

<style type="text/css">

</style>
Habe einen Code, der in HTML funktioniert aber in Firefox nicht.
Ich glaube, du meinst IE statt HTML
 
Forenregeln lesen und wenn du das nächste Mal Codes im Forum postest, dann bitte die dort erklärten Code-Tags verwenden!
Danke.
 
Hallo

LINK stand zwar für den LINK da, aber so wie es aussieht konnte die Netzwerkadresse vom Firefox nicht korrekt aufgelöst werden.

Habe nun die Formatierungen wie erwähnt geändert, einen relativen Link gesetzt und siehe da, es ging.

Und natürlich meinte ich den IE und nicht HTML.

Vielen dank an alle und gruss
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben