Wednesday, September 18, 2019

CSS :active Selector

Example

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

HTML hidden Attribute

Example

A hidden paragraph:

<p hidden>This paragraph should be hidden.</p>