css underlineでテキストに下線を引く
環境
Google Chrome 111.0.5563.65(Official Build)
Windows 10 Home 64bit
書式
text-decoration:underline
HTMLだけでテキストに下線を引くには「style属性」にて「text-decoration」プロパティに「underline」を指定します。
使用例
<!DOCTYPE html> <html> <head> <style> p { text-decoration:underline; } </style> </head> <body> <p>東京tokyo</p> </body> </html>
結果
テキスト「東京tokyo」に下線を引く