css

inheritと!important

css

inherit { property: inherit; }と書くと、継承しない仕様のプロパティでも継承することが可能。!important { property: value !important; }と書くと、スタイル適用を優先させる。スタイルシートで!importantを指定すると、HTML文書で定義されたスタイルよ…

文字のぼかし

css

text-shadow: 0px 0px 1px #fff(左右のズレ 上下のズレ ぼかし具合 ぼかし色)で。

背景グラデーション

css

background-image: -webkit-gradient(linear, left top, left bottom, from(#ff99cc), to(#ffffff));でwebkit系のブラウザで対応できる。 ( linear, 開始位置, 終了位置, 開始色, 終了色で)