久久久久久人妻一区二区三区-激情久久AV一区AV二区AV三区-久久久久久久极品内射-精品少妇人妻AV一区二区

萬能百科  > 游戲數碼?  > 

去掉a標簽的下劃線

2022-02-23   

a標簽是超鏈接,它會有下劃線。下面,我們來看看如何去掉a標簽的下劃線吧。

操作方法

  • 01

    代碼,可以看到鏈接下方有下劃線,如下圖所示:
    <a href="https://www.sogou.com/">souGo</a>

  • 02

    寫一個樣式表,如下圖所示:
    <style type="text/css"> </style>

  • 03

    然后寫超鏈接樣式,如下圖所示:
    <style type="text/css">
    a{
    text-decoration:none
    }
    </style>

  • 04

    顯示結果
    結果看到超鏈接下劃線已經去掉了,如下圖所示:
    總代碼:
    <html>
    <body>
    <head>
    <style type="text/css">
    a{
    text-decoration:none;
    }
    </style>
    <a href="https://www.sogou.com/">souGo</a>

    </head>

    </body>
    </html>

詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫學等領域),建議您咨詢相關領域專業人士。

標簽