Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试用速记缩短我的 css。在我的段落代码中,我有:
p{ font: 12px/14px normal 'verdana'; margin: 0px; }
这在 chrome、safari 等中运行良好,但在 Firefox 中却不行。它没有注册“字体:12px/14px normal 'verdana';” 只有“边距:0px;”
有什么问题/我能做什么?
它应该是:字体:重量、大小、家族
p{ font:normal 12px/14px 'verdana'; margin: 0px; }
演示:http: //jsfiddle.net/4tUxp/