对不起大家,我真的找不到更好的问题标题了.
我遇到过这段代码
font: 9pt/18px Tahoma;
Run Code Online (Sandbox Code Playgroud)
你知道这意味着什么吗?
小智 13
/* The shorthand */
font: 9pt/18px Tahoma;
/* The expanded version of the above style */
font-size:9pt;
line-height:18px;
font-family:Tahoma;
Run Code Online (Sandbox Code Playgroud)