删除URL链接的颜色和下划线

时间:2014-10-11 14:57:38

标签: url

我正在使用此descargar whatsapp plus 但我需要删除下划线并为链接设置颜色为黑色

2 个答案:

答案 0 :(得分:0)

我猜这是在HTML / CSS中,只需使用

a {
  text-decoration: none;
  color: black;
}
在你的CSS中

答案 1 :(得分:0)

一般建议是不要更改颜色并隐藏链接。

但是。尝试:

a { text-decoration: none !important; color: black; }

在网页的CSS部分(或其导入的任何CSS文件):

<style type="text/css">
   ...
</style>