核心知识
伪类
伪类描述元素状态或结构位置,不需要额外修改 HTML。
- :hover 指针悬停
- :focus-visible 键盘焦点
- :nth-child() 按结构位置匹配
a:hover{text-decoration-thickness:3px}
button:focus-visible{outline:3px solid #f59e0b}
伪类描述元素状态或结构位置,不需要额外修改 HTML。
a:hover{text-decoration-thickness:3px}
button:focus-visible{outline:3px solid #f59e0b}