Is it possible to change the font from the <pre> tag? For example, I don’t like the courier font, but I do like the consolas font. Hod od I change this in css?
I tried the following:
pre {
color: white;
font: "Consolas";
}
but that didn’t work in Firefox/IE…
Thank you!
Yvan
The
fontshorthand property requires that you specify the font size.Use the
font-familyproperty instead.