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