从浏览网页来看,CSS 属性值(如 HTML 属性值)似乎可以被引用或不被引用。但是,在 JSFiddle 中,如果值没有被引用,我只能让 CSS 工作。
这是 HTML 示例:
<div id="withQuotes">The CSS for this has quoted parameter values.</div>
<div id="withoutQuotes">The CSS for this has unquoted parameter values.</div>
这是CSS:
#withQuotes {
font-size:"x-large";
width:'100px';}
#withoutQuotes {
font-size:x-large;
width:100px;
}