アーカイブ

‘CSS’ タグのついている投稿

テキストにシャドウ効果を付与する「text-shadow」プロパティ。

text-shadowプロパティを使用して記事タイトルやウィジットタイトル等にドロップシャドウを適用しました。

編集するのはstyle.cssの

}
h1, h2, h3, h4, h5, h6 {
	font-weight:bold;
	letter-spacing:-0.05em;
	font-family:Arial;
}

とある部分。

ここに以下の様に編集。

}
h1, h2, h3, h4, h5, h6 {
	font-weight:bold;
	letter-spacing:-0.05em;
	font-family:Arial;
	text-shadow: 2px 2px 3px grey;
}

値の意味は

>text-shadow: <左右の距離> <上下の距離> <ぼかし半径> <色>

となっています。

カテゴリー: WordPress タグ: ,