在<a> makes it useless

时间:2018-11-20 16:59:23

标签: html css

I've come across a problem, when css code is used a {all:unset;} then <a> tag will lose it's functionality. any tips besides not to use the piece of code?

2 个答案:

答案 0 :(得分:0)

使用all:未设置时,您的光标将更改为其父光标,默认情况下通常是文本光标(如果您的链接位于正文,div等中),则将光标更改为css文件中的指针。 请注意,单击后仍会重定向到其链接。 更改后的CSS代码:

a{
all: unset;
cursor: pointer;
}

答案 1 :(得分:0)

好的,所以我弄清楚了,css无法减少标签功能。 tsconfig-paths只会删除元素中的所有样式。否则,一切都很好。 如果all: unset;不起作用,请检查其<a>href属性。