:left
:left
The :left pseudo-class in CSS is used with the @page at-rule to select all left-hand pages in a print document […]
@page :left { margin: 1in 2in; }
Continue Reading
:link
:link
The :link selector is a pseudo-class that targets all anchor (<a>) elements on a page that have an href attribute: […]
a:link { color: #f8a100; }
Continue Reading
:lang()
:lang()
The :lang() pseudo class selector in CSS matches elements based on the context of their given language attribute. Language in […]
Continue Reading
:last-child
:last-child
The :last-child selector allows you to target the last element directly inside its containing element. It is defined in the […]
Continue Reading
:last-of-type
:last-of-type
The :last-of-type selector allows you to target the last occurence of an element within its container. It is defined in […]
p:last-of-type { font-size: 0.75em; }
Continue Reading