文字装飾(text-decoration)
<html> <head> <title>文字装飾</title> <style type="text/css"> <!-- .c1 { text-decoration: underline; } .c2 { text-decoration: overline; } .c3 { text-decoration: line-through; } //--> </style> </head> <body> <p> <span class="c1">下線</span><br> <br> <span class="c2">上線</span><br> <br> <span class="c3">取消線</span><br> </p> </body> </html>
〔 実行する 〕