当按顺序放置时,“a:link”伪类不是多余的“a”(:link,:visited,:hover,:active)?为什么这样说:
a:link {color: blue;} a:visited {color: purple;} a:hover {color: red;} a:active {color: yellow;}
当你可以这样说:
a {color: blue;} a:visited {color: purple;} a:hover {color: red;} a:active {color: yellow;}
我问,因为第一个是我看到的LVHA订单最常见的例子.第二个版本具有相同的特异性,因此它的功能相同.在链接状态发生变化时,要明确哪些内容正在发生变化,这只是一个组织事物吗?我错过了什么?