代碼,可以看到鏈接下方有下劃線,如下圖所示:
<a href="https://www.sogou.com/">souGo</a>
寫一個樣式表,如下圖所示:
<style type="text/css"> </style>
然后寫超鏈接樣式,如下圖所示:
<style type="text/css">
a{
text-decoration:none
}
</style>
顯示成果
成果看到超鏈接下劃線已經去失落了,如下圖所示:
總代碼:
<html>
<body>
<head>
<style type="text/css">
a{
text-decoration:none;
}
</style>
<a href="https://www.sogou.com/">souGo</a>
</head>
</body>
</html>
0 篇文章
如果覺得我的文章對您有用,請隨意打賞。你的支持將鼓勵我繼續創作!