CSSでテキストの周りに影を設定します
text-shadowプロパティを使用して、テキストの周囲に影を設定します。次のコードを実行して、CSSでテキストの周囲に影を付ける方法を学ぶことができます。
例
<html> <head> </head> <body> <p style = "text-shadow:3px 1px 4px green;"> If your browser supports the CSS text-shadow property, this text will have a green shadow. </p> </body> </html>
-
CSSでテキスト装飾のスタイルを設定します
テキスト装飾のスタイルを設定するには、text-decoration-styleプロパティを使用します。次の値を使用できます- text-decoration-style: solid|double|dotted|dashed|wavy|initial|inherit; 例 <!DOCTYPE html> <html> <head> <style> span { text-decoration: line-through; text-decoration-color: blue; } .demo
-
CSSのテキストで使用される装飾の種類を設定します
テキストに使用する装飾の種類を設定するには、text-decoration-lineプロパティを使用します。 CSSでは、テキスト装飾用に次のオプションがあります- text-decoration-line: none|underline|overline|line-through|initial|inherit; 例 <!DOCTYPE html> <html> <head> <style> .demo { text-decoration: overline underline; text-d