Schriftgrößen
Matthias
- css
0 Christian0 Thomas Luethi0 Matthias
Hallo,
in einer Seite habe ich folgene CSS-Angeben entdeckt:
H1 { font: 20px/130% Arial , Verdana, sans-serif; color: #0d4f6e; background-color: transparent; }
H2 { font: 14px/18px Arial , Verdana, sans-serif; color: #0d4f6e; background-color: transparent; margin-top: 50px; }
Was bedeuten die "/", sind das Alternativangaben?
Danke für Hinweise.
Matthias
Hallo Matthias,
Was bedeuten die "/", sind das Alternativangaben?
Wenn ich mich nicht irre, sind das die Angaben für die Zeilenhöhe.
Man könnte auch schreiben:
font-size: 20px
line-height: 130%
Gruß,
Hallo,
H1 { font: 20px/130% Arial , Verdana, sans-serif; color: #0d4f6e; background-color: transparent; }
H2 { font: 14px/18px Arial , Verdana, sans-serif; color: #0d4f6e; background-color: transparent; margin-top: 50px; }
Was bedeuten die "/", sind das Alternativangaben?
Nein, es sind die Angaben zur Zeilenhoehe.
http://selfhtml.teamone.de/css/eigenschaften/schrift.htm#font_size
H1 { font: 20px/130% Arial , Verdana, sans-serif; }
heisst ausfuehrlich:
H1 { font-size:20px; line-height:130%; font-family: Arial , Verdana, sans-serif; }
Gruesse,
Thomas
Hallo,
vielen Dank für die Antworten.
Matthias