「CSS入門」text-decorationでテキストの装飾を指定する
書式
1.テキストに上線を引く
h1 {text-decoration:overline;}
2.テキストに取り消し線を引く
h2 {text-decoration:line-through;}
3.テキストに下線を引く
h3 {text-decoration:underline;}
サンプルコード
<style> h1 {text-decoration:overline;} h2 {text-decoration:line-through;} h3 {text-decoration:underline;} </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3>