📜  如何在html代码示例中将链接设置为普通文本

📅  最后修改于: 2022-03-11 14:53:30.734000             🧑  作者: Mango

代码示例1
You can make a link look like normal text by setting color and removing text underline and even change the cursor.
a {
color: black;
text-decoration: none;
cursor: auto;
}