• ベストアンサー

CSSのfontプロパティについて

CSSのfontプロパティについて fontプロパティでシステムフォントを設定できます。 例えば p {font:iocn} とかです。   ほとんどのところは次の6つが解説してあるようでした。 http://w3g.jp/css/font/font しかし、画面のプロパティを見ているとヒントとかも フォントを設定できるようでした。 ということは p{font:hint}とかもできたりしますか? 上記6つ以外で使えるという意見があれば教えて下さい。

質問者が選んだベストアンサー

  • ベストアンサー
  • think49
  • ベストアンサー率59% (285/482)
回答No.1

font: hint; は指定できません。 CSS Level2 から CSS Level 3 まで指定できるショートカット値は変化していないようです。 --- 15.8 Shorthand font property: the 'font' property 'font' Value: [ [ <'font-style'> || <'font-variant'> || <'font-weight'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar | inherit http://www.w3.org/TR/CSS2/fonts.html#font-shorthand --- --- 3.8 Shorthand font property: the ‘font’ property Value: [ [ <‘font-style’> || <‘font-variant’> || <‘font-weight’> ]? <‘font-size’> [ / <‘line-height’> ]? <‘font-family’> ] | caption | icon | menu | message-box | small-caption | status-bar | inherit http://www.w3.org/TR/css3-fonts/#shorthand-font-property-the-font-propert --- 15.2.5 簡略記述フォント属性('font'特性)- CSS Level 2 http://www.y-adagio.com/public/standards/tr_css2/fonts.html#font-shorthand

flyingbee
質問者

お礼

ご回答有り難うございます。 この間、画面のプロパティを開いていて 何気になく思いついたもので聞いてみました。   これほど突っ込んだ回答が来るとは思ってみませんでした。 W3Cとかに記載があったんですね。どうもです。

関連するQ&A