From browsing the web, it seems that CSS property values, like HTML property values, can be quoted or not. However, in JSFiddle, I can only get the CSS to work if the values are unquoted.
Here's the HTML example:
<div id="withQuotes">The CSS for this has quoted parameter values.</div>
<div id="withoutQuotes">The CSS for this has unquoted parameter values.</div>
And here's the CSS:
#withQuotes {
font-size:"x-large";
width:'100px';}
#withoutQuotes {
font-size:x-large;
width:100px;
}
The above is saved in http://jsfiddle.net/8EMyW/