css transpirant
wie weet de code om achtergrond doorzichtbaar te maken in css.
laterz
Google tip: het is transparant, in het engels transparent
In je css transparent gebruiken is niet valid. Ik raad je aan een kleurcode te gebruiken.
Bramboos schreef op 31.01.2010 20:23:
In je css transparent gebruiken is niet valid. Ik raad je aan een kleurcode te gebruiken.
Waar baseer je dit op?
oke bedankt
Code (php)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
body {
background-color: transparent;
color: #000000;
}
/* Koppen: */
h1 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 21pt;
font-weight: bold;
line-height: 1em;
}
h2 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 18pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
h3 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 14pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
/* Besturingselementen (controls) voor formulieren: */
fieldset {
cursor: default;
padding: 10px;
}
input {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
label {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
legend {
color: #0046D5;
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
select {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
line-height: 1.1em;
}
/* Formuliervelden binnen labels verticaal gecentreerd uitlijnen */
/* (werkt niet goed in Netscape, maar wel in Internet Explorer): */
label input {
vertical-align: middle;
}
/* Andere blokelementen (block-level elements): */
p {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.3em;
}
li {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.2em;
margin-bottom: 1ex;
}
td {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
th {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
address {
font-family: Verdana, Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
font-style: normal;
line-height: 1.2em;
margin-top: 13px;
}
/* Inline elementen: */
cite, em, var {
font-style: normal; /* Niet cursief ... */
font-weight: bold; /* ... maar vet */
}
/* Selectors (pseudo-klassen) voor hyperlinks: */
a:link {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:visited {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:hover {
color: #6666FF; /* Voorgrondkleur lichter blauw */
cursor: pointer; /* Aanwijzer weergeven als handje */
text-decoration: underline; /* Onderstrepen */
}
/*
+---------------------------------+
| S P E C I A L E K L A S S E N |
+---------------------------------+
*/
/* Waarschuwingen: */
.w {
color: #FF3300; /* Rood */
font-style: normal; /* Niet cursief */
font-weight: bold; /* Vet */
}
/* Knoppen met een standaardformaat van 75 bij 23 pixels, */
/* alleen geschikt voor niet te brede opschriften: */
input.knop {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
width: 75px;
height: 23px;
margin: 5px 0 10px 0;
}
background-color: transparent;
color: #000000;
}
/* Koppen: */
h1 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 21pt;
font-weight: bold;
line-height: 1em;
}
h2 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 18pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
h3 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 14pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
/* Besturingselementen (controls) voor formulieren: */
fieldset {
cursor: default;
padding: 10px;
}
input {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
label {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
legend {
color: #0046D5;
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
select {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
line-height: 1.1em;
}
/* Formuliervelden binnen labels verticaal gecentreerd uitlijnen */
/* (werkt niet goed in Netscape, maar wel in Internet Explorer): */
label input {
vertical-align: middle;
}
/* Andere blokelementen (block-level elements): */
p {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.3em;
}
li {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.2em;
margin-bottom: 1ex;
}
td {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
th {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
address {
font-family: Verdana, Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
font-style: normal;
line-height: 1.2em;
margin-top: 13px;
}
/* Inline elementen: */
cite, em, var {
font-style: normal; /* Niet cursief ... */
font-weight: bold; /* ... maar vet */
}
/* Selectors (pseudo-klassen) voor hyperlinks: */
a:link {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:visited {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:hover {
color: #6666FF; /* Voorgrondkleur lichter blauw */
cursor: pointer; /* Aanwijzer weergeven als handje */
text-decoration: underline; /* Onderstrepen */
}
/*
+---------------------------------+
| S P E C I A L E K L A S S E N |
+---------------------------------+
*/
/* Waarschuwingen: */
.w {
color: #FF3300; /* Rood */
font-style: normal; /* Niet cursief */
font-weight: bold; /* Vet */
}
/* Knoppen met een standaardformaat van 75 bij 23 pixels, */
/* alleen geschikt voor niet te brede opschriften: */
input.knop {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
width: 75px;
height: 23px;
margin: 5px 0 10px 0;
}
Code (php)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
body {
background-color: transparent;
color: #000000;
}
/* Koppen: */
h1 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 21pt;
font-weight: bold;
line-height: 1em;
}
h2 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 18pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
h3 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 14pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
/* Besturingselementen (controls) voor formulieren: */
fieldset {
cursor: default;
padding: 10px;
}
input {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
label {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
legend {
color: #0046D5;
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
select {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
line-height: 1.1em;
}
/* Formuliervelden binnen labels verticaal gecentreerd uitlijnen */
/* (werkt niet goed in Netscape, maar wel in Internet Explorer): */
label input {
vertical-align: middle;
}
/* Andere blokelementen (block-level elements): */
p {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.3em;
}
li {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.2em;
margin-bottom: 1ex;
}
td {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
th {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
address {
font-family: Verdana, Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
font-style: normal;
line-height: 1.2em;
margin-top: 13px;
}
/* Inline elementen: */
cite, em, var {
font-style: normal; /* Niet cursief ... */
font-weight: bold; /* ... maar vet */
}
/* Selectors (pseudo-klassen) voor hyperlinks: */
a:link {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:visited {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:hover {
color: #6666FF; /* Voorgrondkleur lichter blauw */
cursor: pointer; /* Aanwijzer weergeven als handje */
text-decoration: underline; /* Onderstrepen */
}
/*
+---------------------------------+
| S P E C I A L E K L A S S E N |
+---------------------------------+
*/
/* Waarschuwingen: */
.w {
color: #FF3300; /* Rood */
font-style: normal; /* Niet cursief */
font-weight: bold; /* Vet */
}
/* Knoppen met een standaardformaat van 75 bij 23 pixels, */
/* alleen geschikt voor niet te brede opschriften: */
input.knop {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
width: 75px;
height: 23px;
margin: 5px 0 10px 0;
}
background-color: transparent;
color: #000000;
}
/* Koppen: */
h1 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 21pt;
font-weight: bold;
line-height: 1em;
}
h2 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 18pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
h3 {
background-color: transparent;
color: #6487DC;
font-family: "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
font-size: 14pt;
font-weight: bold;
line-height: 1em;
margin-bottom: 0.25em;
}
/* Besturingselementen (controls) voor formulieren: */
fieldset {
cursor: default;
padding: 10px;
}
input {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
label {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
legend {
color: #0046D5;
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
select {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
line-height: 1.1em;
}
/* Formuliervelden binnen labels verticaal gecentreerd uitlijnen */
/* (werkt niet goed in Netscape, maar wel in Internet Explorer): */
label input {
vertical-align: middle;
}
/* Andere blokelementen (block-level elements): */
p {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.3em;
}
li {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 9pt;
line-height: 1.2em;
margin-bottom: 1ex;
}
td {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
th {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
}
address {
font-family: Verdana, Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
font-style: normal;
line-height: 1.2em;
margin-top: 13px;
}
/* Inline elementen: */
cite, em, var {
font-style: normal; /* Niet cursief ... */
font-weight: bold; /* ... maar vet */
}
/* Selectors (pseudo-klassen) voor hyperlinks: */
a:link {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:visited {
color: #0000FF; /* Voorgrondkleur blauw */
text-decoration: none; /* Niet onderstrepen */
}
a:hover {
color: #6666FF; /* Voorgrondkleur lichter blauw */
cursor: pointer; /* Aanwijzer weergeven als handje */
text-decoration: underline; /* Onderstrepen */
}
/*
+---------------------------------+
| S P E C I A L E K L A S S E N |
+---------------------------------+
*/
/* Waarschuwingen: */
.w {
color: #FF3300; /* Rood */
font-style: normal; /* Niet cursief */
font-weight: bold; /* Vet */
}
/* Knoppen met een standaardformaat van 75 bij 23 pixels, */
/* alleen geschikt voor niet te brede opschriften: */
input.knop {
font-family: Tahoma, "MS Sans Serif", Geneva, sans-serif;
font-size: 8pt;
width: 75px;
height: 23px;
margin: 5px 0 10px 0;
}
Bramboos schreef op 31.01.2010 20:44:
Als ik daar dit invoer:
Krijg ik gewoon te zien dat het valid is hoor...
Probeer eens te zoeken op internet naar 'CSS lettertype', dan heb je je antwoord mogelijk nog sneller ook
ik wil graag het lettertype veranderen waar in dit script moet ik dat veranderen
- Waar loop je vast, wat heb je geprobeerd?
Lettertypes stel je in met font-family... Als je nu in 1 keer alle lettertypen op de hele pagina wilt instellen raad ik je aan alle font-family regels weg te halen uit je css, en je body aan te passen naar:
Code (php)
1
2
3
4
5
2
3
4
5
body {
background-color: transparent;
color: #000000;
font-family: 'gewenste font';
}
background-color: transparent;
color: #000000;
font-family: 'gewenste font';
}
In je body heeft een background transparent overigens erg weinig zin... Standaard is je body al transparent, en er zit niets 'achter'je body wat je er 'doorheen zou willen zien', dus wat probeer je precies te doen?
wat ik wou met transprant is gelukt ik plaats hem namelijk in een iframe lettertype moet denk ik nu ook wel lukken
font-size: 18pt;
font-weight: bold;
en hoe verander ik dan de kleur van het lettertype
@Rens; je hebt staan font-family: 'gewenste font'. Ik hoop dat je dit zelf niet in je CSS gebruikt want om naam van de font hoeven geen quotes. :-)
of zou je me in een keer willen helpen het script zo aanpassen dat alles lettertype 14 is in Futura lettertype en kleur wit.
Je kunt je post ook bewerken.
Je kunt met color de tekstkleur aanpassen:
color: kleur;
Kijk voortaan op W3schools:
http://www.w3schools.com/css/css_reference.asp
Hoithebest schreef op 31.01.2010 21:18:
@Rens; je hebt staan font-family: 'gewenste font'. Ik hoop dat je dit zelf niet in je CSS gebruikt want om naam van de font hoeven geen quotes. :-)
Wel als je font naam uit meerdere woorden bestaat... en dat is in dit geval ;-)
Maarre, nee, normaal niet dus :-)