How to remove the hyperlink horizontal line

Disclaimer: This article is copyrighted final HrainOne all, welcome to reprint, please declare final copyright https://blog.csdn.net/gaoxin_gx/article/details/91355789

Add the following code <head> </ head> of:

<style type="text/css">
    a:link {
    text-decoration: none;
    }
    a:visited {
    text-decoration: none;
    }
    a:hover {
    text-decoration: none;
    }
    a:active {
    text-decoration: none;
    }
    </style>

Figure:
Here Insert Picture Description

Guess you like

Origin blog.csdn.net/gaoxin_gx/article/details/91355789