
CSS :empty Pseudo Class
CSS :empty Pseudo-Class The :empty pseudo-class selects elements that contain no children , including text nodes. It is useful for detecting and s…
CSS :empty Pseudo-Class The :empty pseudo-class selects elements that contain no children , including text nodes. It is useful for detecting and s…
CSS :disabled Pseudo-Class The :disabled pseudo-class selects and styles form elements that are disabled ( disabled attribute present). This is …
CSS :dir() Pseudo-Class The :dir() pseudo-class applies styles based on the text direction ( ltr or rtl ) of an element. It is useful for suppor…
CSS :out-of-range Pseudo-Class The :out-of-range pseudo-class applies styles to form inputs when their values fall outside a specified range. It …
CSS ::placeholder Pseudo-Element The ::placeholder pseudo-element styles the placeholder text inside form input fields. It allows for the customiz…
CSS :read-only Pseudo-Class The :read-only pseudo-class selects form fields or elements that are not editable by the user. It helps apply styles …
CSS :read-write Pseudo-Class The :read-write pseudo-class selects input fields or elements that are editable by the user. It helps apply styles sp…
CSS :required Pseudo-Class The :required pseudo-class selects input fields that have the required attribute in an HTML form. It is useful for st…
CSS :root Pseudo-Class The :root pseudo-class represents the highest-level parent element in the document (the <html> element in HTML). It…
CSS :scope Pseudo-Class The :scope pseudo-class in CSS represents the current element in the scope of a selector , typically the root of a compone…
CSS ::selection Pseudo-Element The ::selection pseudo-element in CSS allows you to style the portion of text highlighted (selected) by the user . …
CSS :target Pseudo-Class The :target pseudo-class in CSS applies styles to an element when its ID is targeted by a URL fragment ( #id ). It’s com…
CSS :valid Pseudo-Class The :valid pseudo-class in CSS applies styles to form elements ( input, textarea, select ) when their content is valid ac…
CSS :visited Pseudo-Class The :visited pseudo-class in CSS allows you to style links ( <a> elements) after they have been visited by the u…
CSS align-content Property The align-content property in CSS controls how multiple rows in a flexbox or grid container are aligned along the cr…
CSS align-items Property The align-items property in CSS controls how flexbox or grid container items align along the cross-axis (vertical axis in…
CSS all Property The all property in CSS is a shorthand that resets or inherits all inheritable and non-inheritable properties of an element in o…
CSS animation Property The animation property is a shorthand that combines multiple animation-related properties into a single declaration. It all…
CSS align-self Property The align-self property in CSS controls how a specific flex or grid item aligns itself along the cross-axis , overriding a…
CSS animation-delay Property The animation-delay property in CSS specifies how long an animation should wait before starting.