0
什麼是CSS屬性(字體和字體系列)末尾的星號?CSS屬性末尾的星號
/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.8.0r4
*/
body{
font:14px Minion New,times,clean,serif;*
font-size:small;*
font:x-small;
}
pre,code,kbd,samp,tt{
font-family:monospace;*
font-size:108%;
line-height:100%;
}
是否與the IE7 hack相同?但是這個星號在最後。
可能重複[在CSS中星號前面的屬性意味着什麼?](http://stackoverflow.com/questions/1667531/what-does-a-star-preceded-property-mean-in-css) – Serlite
我知道IE瀏覽器黑客。但是這個星號在END,而你提到的那個是在開頭。 –
如果消除規則之間的空白,可以看到它 - 因爲CSS中的空白對瀏覽器讀取方式沒有影響,所以可以在後面一行的開頭考慮行尾的星號。 – Serlite