
CSS :default Pseudo Class
CSS :default Pseudo-Class The :default pseudo-class in CSS selects form elements that are the default choice in a group, such as: The pre-sele…
CSS :default Pseudo-Class The :default pseudo-class in CSS selects form elements that are the default choice in a group, such as: The pre-sele…
CSS :link Pseudo-Class The :link pseudo-class in CSS targets unvisited links ( <a> elements with an href attribute). It allows you to sty…
CSS empty-cells Property The empty-cells property in CSS controls the visibility of empty table cells in a table with border-collapse: separate .
CSS fill Property The fill property in CSS defines the color of SVG elements . It is mainly used for vector graphics and icons that are created u…
CSS filter Property The filter property in CSS applies graphical effects like blur, brightness, contrast, and grayscale to elements. It is common…
CSS flex Property The flex property in CSS is a shorthand for setting flex-grow , flex-shrink , and flex-basis in one line. It controls how a fl…
CSS flex-basis Property The flex-basis property in CSS defines the initial size of a flex item before any growth or shrinking occurs. It can be s…
CSS flex-direction Property The flex-direction property in CSS defines the direction of flex items inside a flex container. It determines whether…
CSS flex-flow Property The flex-flow property in CSS is a shorthand for setting both flex-direction and flex-wrap in a single declaration. It c…
CSS flex-grow Property The flex-grow property in CSS controls how much a flex item expands to fill available space in a flex container. It works …
CSS flex-shrink Property The flex-shrink property in CSS controls how much a flex item shrinks when there’s not enough space in a flex container.…
CSS flex-wrap Property The flex-wrap property in CSS controls whether flex items wrap onto multiple lines when they don’t fit in a single row or …
CSS float Property The float property in CSS positions elements by making them float to the left or right within a container. It is commonly us…
CSS font Property The font property in CSS is a shorthand for setting multiple font-related properties in a single declaration.
CSS @font-face Rule The @font-face The rule in CSS allows you to define and use custom fonts in your web projects without relying on standard s…
CSS font-display Property The font-display property in CSS controls how web fonts are loaded and displayed on a webpage. It helps improve perform…
CSS :checked Pseudo-Class The :checked pseudo-class applies styles to checkboxes, radio buttons, and switches when they are selected (checked) .
CSS ::before Pseudo-Element The ::before pseudo-element allows you to insert content before an element without modifying the HTML.
CSS ::after Pseudo-Element The ::after pseudo-element allows you to insert content after an element without modifying the HTML.
CSS :active Pseudo-Class The :active pseudo-class in CSS applies styles when an element is being clicked or activated by the user.