Thomas Luethi: Schriftgrößen

Beitrag lesen

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