a { color: red; text-decoration: none; &:hover { text-decoration: underline; color: blue; &.current-page { text-decoration: initial; color: initial; } &:visited { color: initial; } } }
.current-page
would be equivalent to the Webstudio "Current Page" state)?a:hover:visited
and a:hover.current-page
to make my point. I'm really just asking about combinations of pseudo-classes (states) in the UI.<style> nav ul { &:hover, &:focus, &:focus-visible, &:focus-within { li a[aria-current=page] { box-shadow: var(--nav-thin); } } } </style>
:root