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.
刚刚在我正在使用的代码库中遇到以下 20px/26px 值。有没有人以前见过这个并且知道它的目的?在 chrome 中,它使用后面的 px 值(26px)呈现
#action { font: normal 20px/26px Arial, Helvetica, sans-serif; }
此语法指定font-size后跟line-height. 请参阅文档。
font-size
line-height
20px 是font-size, 26px 是line-height.