6 Interesting Almanac Selectors or Properties

:has
The :has() pseudo-class selector selects elements that match the selector passed in it's arguments.
:is
The :is() pseudo-class function uses a selector list as it's argument. It selects any element that can be selected by the selector/s in the list.
::marker
The ::marker pseudo element makes allows you to easily style the markers of list elements.
::selection
The ::select pseudo element allows you to change the properties of selected text on your site to match your sites color theme.
text-decoration-line
The text-decoration-line property does what you'd expect it to do. It adds lines to text.
visibility property
The visibility property has 4 values: visible, hidden, collapse, and inherit. It has two functions: It hides rows and columns in a table, and it can hide an element without changing the layout. Click the button below for an example of visible and hidden used on div elements.