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.
我不断看到类似的字体样式font: 16px/28px 'Open Sans', 'Helvetica', sans-serif;,但我无法找出它的16px/28px含义。为什么定义了两种不同的字体大小?
font: 16px/28px 'Open Sans', 'Helvetica', sans-serif;
16px/28px
它设置字体大小和行高。
请参阅MDN 文档的示例:
/*设置字体大小为12px,行高为14px。将字体系列设置为无衬线 */ p { 字体:12px/14px sans-serif }
/*设置字体大小为12px,行高为14px。将字体系列设置为无衬线 */
p { 字体:12px/14px sans-serif }
16px/28px=分别为字体大小和行高
http://www.w3.org/TR/CSS2/fonts.html#font-shorthand