HTMLのstyle属性でtext-decoration: underlineを指定するには
HTMLのstyle
属性でtext-decoration: underline
を指定するには、以下のようにします:
<span style="text-decoration: underline;">テキスト</span>
上記の例では、span
要素を使用してテキストを囲み、style
属性にtext-decoration: underline;
を指定しています。text-decoration
プロパティは、テキストの装飾を指定するために使用されます。underline
値は、テキストに下線を付けるために使用されます。
もちろん、span
要素以外の要素にもstyle
属性を追加してtext-decoration: underline;
を指定することができます。適切な要素を選択して使用してください。