在css中,可以利用「border-bottom」屬性和「text-decoration」屬性讓a標籤下面的線加粗,語法為「a{text-decoration:none;border-bottom:線的粗細值solid 顏色值;}」。
本教學操作環境:windows10系統、CSS3&&HTML5版、Dell G3電腦。
css中a標籤下面的線怎麼加粗
#在css中,可以利用border-bottom屬性和text-decoration屬性來讓a標籤下面的線加粗,
text-decoration屬性用來規定加入到文字的修飾,border-bottom屬性用來設定元素的下邊框樣式,因此,我們可以先把a標籤原本的底線去除掉,使用a標籤元素的下邊框來作為a標籤下面的線,這樣只需要設定a標籤下邊框的粗細值就可以了。
範例如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> a{ color:red; border-bottom:5px solid red; text-decoration:none; } </style> </head> <body> <a href="">这是一个a标签</a> </body> </html>
輸出結果:
#(學習影片分享:css影片教學)
以上是css中a標籤下面的線怎麼加粗的詳細內容。更多資訊請關注PHP中文網其他相關文章!