在
css中,可用「text-decoration」屬性設定刪除線的粗細,當屬性值為「line-through 粗細值」時,會定義一個刪除線,並設定刪除線的粗細,語法「元素{text-decoration:line-through 粗細值}」。
本教學操作環境:windows10系統、CSS3&&HTML5版、Dell G3電腦。
css怎麼設定刪除線的粗細
#在css中,可以利用text-decoration屬性設定刪除線並設定刪除線的粗細值,當屬性值為line-through時會定義一個刪除線。
語法如下:
text-decoration: line-through 删除线粗细值;
範例如下:
<html> <head> <style type="text/css"> h2 {text-decoration: line-through 15px} </style> </head> <body> <h2>这是标题 2</h2> </body> </html>
輸出結果:
<html> <head> <style type="text/css"> h2 {text-decoration: line-through 1px} </style> </head> <body> <h2>这是标题 2</h2> </body> </html>
輸出結果:
(學習影片分享:css影片教學)
以上是css如何設定刪除線的粗細的詳細內容。更多資訊請關注PHP中文網其他相關文章!