Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Wednesday, September 18, 2019

CSS :active Selector

Example

Select and style the active link:
a:active {
  background-color: yellow;
}