CSS vraag: font-family
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
Hmm dit werk wel goed :/
Dus zet er sans-serif achter
Veel letter types zijn niet beschikbaar op linux en omgekeerd.
Het werkt nu goed :).. nooit geweten dat het zo moet.. :P..
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;
}
Probleme wordt daardor niet opgelost, de manier van Jaap heeft geholpen :)