What is the proper syntax for putting all css font properties into one value.
body {font: 12px, arial, red}
Something like that but with all th
body{ font: bold italic 15px/20px arial,sans-serif; color: red; }
http://www.w3schools.com/css/tryit.asp?filename=trycss_font
you can't include the color as part of the declaration. 15px/20px = font-size/line-height
nice link, maegar!