CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 04:46:35 GMT
content-type: text/html; charset=utf-8
server: cloudflare
cache-provider: CLOUDWAYS-CACHE-DE
x-frame-options: SAMEORIGIN
referrer-policy: strict-origin-when-cross-origin
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-xss-protection: 1; mode=block
vary: Accept-Encoding
last-modified: Sat, 11 Oct 2025 13:41:34 GMT
cache-control: max-age=0, s-maxage=2592000
expires: Sun, 12 Oct 2025 04:46:35 GMT
age: 0
x-cache: MISS
cf-cache-status: DYNAMIC
content-encoding: gzip
cf-ray: 98d3f449381bc195-BLR
R | CSS-Tricks
Skip to main content
:root
:root
The :root selector allows you to target the highest-level “parent” element in the DOM, or document tree. It is defined […]
:root { }
Continue Reading
:required
:required
The :required pseudo class selector in CSS allows authors to select and style any matched element with the required attribute. […]
input:required { }
Continue Reading
:read-write / :read-only
:read-write / :read-only
The :read-write and :read-only selectors are two mutability pseudo-classes aiming at making form styling easier based on disabled, readonly and […]
.element:read-only { cursor: not-allowed; }
Continue Reading
:right
:right
The :right pseudo-class in CSS is used with the @page at-rule to select all right-hand pages in a print document […]
@page :left { margin: 1in 2in; }
Continue Reading