What does the '/' symbol mean in CSS
css
Solution
In that example it means `font-size:2px`,and `line-height:3px`. Although I am not sure if that works without the rest of the font rule. http://www.impressivewebs.com/css-font-shorthand-property-cheat-sheet/
Problem
Possible Duplicate: Size in CSS with slash I just saw some CSS code like this. Can some please tell me what the '/' symbol means and if there are any best practices governing it's usage ? ``` font: 2px/3px; ``` Edit: Here is the entire code block (to give context) ``` .funky { font: 2px/3px; font-family: fantasy; font-size: 30em; font-weight: bold; } ```