CSS vraag: font-family
Jorik
07/01/2005 21:01:00Ik ben bezig met een nieuwe website [naja, oude upgraden ;)], ben nu met de CSS file bezig, heb deze laten valideren, hij is valid ofzo, maar ik krijg deze warning:
Line : 8 font-family: Het is beter een algemene font-family op te geven als laatste alternatief
Wat houdt deze waarschuwing in? En wat kan ik ertegen doen?..
CSS is
Line : 8 font-family: Het is beter een algemene font-family op te geven als laatste alternatief
Wat houdt deze waarschuwing in? En wat kan ik ertegen doen?..
CSS is
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
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
body {
background-color: red;
margin-top: 0px;
}
body, td {
color: blue;
font-size: 9pt;
font-family: Verdana, Tahoma, Arial;
}
input, option, textarea {
font-family: Verdana, Tahoma, Arial;
font-size: 8pt;
color: blue;
border: 1px solid silver;
background-color: white;
}
a:link, a:visited {
color: blue;
text-decoration: underline;
}
a:hover {
color: #ffa500;
text-decoration: none;
}
a:active {
color: red;
font-weight: bold;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
color: blue;
text-align: center;
}
background-color: red;
margin-top: 0px;
}
body, td {
color: blue;
font-size: 9pt;
font-family: Verdana, Tahoma, Arial;
}
input, option, textarea {
font-family: Verdana, Tahoma, Arial;
font-size: 8pt;
color: blue;
border: 1px solid silver;
background-color: white;
}
a:link, a:visited {
color: blue;
text-decoration: underline;
}
a:hover {
color: #ffa500;
text-decoration: none;
}
a:active {
color: red;
font-weight: bold;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
color: blue;
text-align: center;
}
Gewijzigd op 07/01/2005 21:01:00 door Jorik
PHP hulp
08/01/2025 12:59:34Eris -
07/01/2005 21:11:00Arial, Verdana, Tahoma, sans-serif;
Hmm dit werk wel goed :/
Dus zet er sans-serif achter
Veel letter types zijn niet beschikbaar op linux en omgekeerd.
Hmm dit werk wel goed :/
Dus zet er sans-serif achter
Veel letter types zijn niet beschikbaar op linux en omgekeerd.
Jorik
07/01/2005 21:14:00Bart Waarom verplicht
07/01/2005 21:15:00Simpel, overal 'font-family:'
Als laatste opgeven, dus:
body {
background-color: red;
margin-top: 0px;
}
body, td {
color: blue;
font-size: 9pt;
font-family: Verdana, Tahoma, Arial;
}
input, option, textarea {
font-size: 8pt;
color: blue;
border: 1px solid silver;
background-color: white;
font-family: Verdana, Tahoma, Arial;
}
a:link, a:visited {
color: blue;
text-decoration: underline;
}
a:hover {
color: #ffa500;
text-decoration: none;
}
a:active {
color: red;
font-weight: bold;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
color: blue;
text-align: center;
}
Als laatste opgeven, dus:
body {
background-color: red;
margin-top: 0px;
}
body, td {
color: blue;
font-size: 9pt;
font-family: Verdana, Tahoma, Arial;
}
input, option, textarea {
font-size: 8pt;
color: blue;
border: 1px solid silver;
background-color: white;
font-family: Verdana, Tahoma, Arial;
}
a:link, a:visited {
color: blue;
text-decoration: underline;
}
a:hover {
color: #ffa500;
text-decoration: none;
}
a:active {
color: red;
font-weight: bold;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
color: blue;
text-align: center;
}