CSS Deklaration |
Marcus
Forenheld Threadstarter
Beiträge: 880 |
Hallo,
so langsam treibt mich das Css-Dingens zur Verzweiflung: Egal wie ichs dreh, weder IE noch FF noch Opera zeigen mir die Seite korrekt an - immer fehlts CSS:
Ich versteh einfach net warums net angezeigt wird - das CSS ist korrekt, und im Dreamweaver bspw. wirds ja auch angezeigt?!
|
 Profil
E-Mail
Editieren
Zitieren
|
languitar
Foren-Team
Beiträge: 2795 |
Pfade richtig gesetzt? Kein Vertippser beim Dateinamen? Dreamweavermacke?
|
 Profil
Editieren
Zitieren
|
Marcus
Forenheld Threadstarter
Beiträge: 880 |
Ja - Nein - Keine Ahnung.
Wie gesagt, die DW-Vorschau zeigts mir richtig an - nur im Browser funktionierts nimmer.
Auch das Css scheint korrekt:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135: | a {
color: #0070b0;
font-weight: bold;
text-decoration: none;
}
a:hover {
color: #e04000;
}
body {
background-color: #FFFFFF;
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
text-align: center;
}
h2 {
font-size: 140%;
margin-top: 0px;
}
h3 {
font-size: 120%;
}
h4 {
font-size: 100%;
}
input, textarea {
border-width: 1px;
padding: 2px;
}
input.button {
border-width: 2px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
pre {
color: #006060;
font-family: "Courier New", Courier, monospace;
font-size: 80%;
margin-left: 1em;
}
pre i {
color: #c06000;
}
td, th {
font-size: 10pt;
text-align: left;
vertical-align: top;
}
th {
font-weight: bold;
text-align: left;
}
/* Boxed table styles */
table.boxed {
border-spacing: 2px;
empty-cells: hide;
}
td.boxed, th.boxed, th.boxedHeader {
background-color: #ffffff;
border-color: #000000;
border-style: solid;
border-width: 1px;
color: #000000;
padding: 2px;
padding-left: 8px;
padding-right: 8px;
}
th.boxed {
background-color: #c0c0c0;
}
th.boxedHeader {
background-color: #808080;
color: #ffffff;
}
ul {
list-style-type: square;
}
#main {
margin: 0px auto;
text-align: left;
width: 42em;
}
.navBar {
background-color: #FFFFFF;
border: 1px solid #000000;
color: #603000;
font-size: 8pt;
margin: 0px;
padding: 2px;
padding-left: 8px;
padding-right: 8px;
text-align: right;
}
#content {
background-color: #ffffff;
background-position: -30% 0%;
background-repeat: no-repeat;
border: 1px solid #000000;
border-top-width: 0px ;
border-bottom-width: 0px ;
padding: .5em 1em .25em 1em;
}
.quoteBox {
background-color: #f0f0f0;
border-color: #909090;
border-style: solid;
border-width: 1px;
padding: .5em;
}
.footer {
margin-bottom: 0px;
} |
Diese Nachricht wurde geändert von: languitar |
 Profil
E-Mail
Editieren
Zitieren
|
languitar
Foren-Team
Beiträge: 2795 |
Was ich so sehe, ist dass in Zeile 50 ein Komma fehlt. Ansonsten guck mal, ob die Pfade wirklich stimmen.
|
 Profil
Editieren
Zitieren
|
Marcus
Forenheld Threadstarter
Beiträge: 880 |
Pfade stimmen - den mit einem anderen Stylesheet gehts problemlos. Na wenigstens weis ich jetzt wos ungefähr fehlen könnte.
|
 Profil
E-Mail
Editieren
Zitieren
|
Marcus
Forenheld Threadstarter
Beiträge: 880 |
Ok, gelöst - war ein falsch verschachteltes Elemnt und Groß/Kleinschreibung |
 Profil
E-Mail
Editieren
Zitieren
|
n0f3aR
Mausakrobat
Beiträge: 154 |
1: | @import url(normal.css) screen; |
ist besser/schöner das ganze so zu schreiben
---
Kostenlos Webspace bei funpic.de
Diese Nachricht wurde geändert von: n0f3aR |
 Profil
E-Mail
Editieren
Zitieren
|
Marcus
Forenheld Threadstarter
Beiträge: 880 |
Sowieso - hab ja noch Unterpunkte für Drucker und Pda
Nur hab ich das temporär rausgeschmissen um mienen Fehler besser lokalisieren zu können.
|
 Profil
E-Mail
Editieren
Zitieren
|