brian treesebriantreese.hashnode.dev·Nov 24, 2023Alpha Transparency in CSS Custom PropertiesCustom properties have been a pretty big deal for us who use CSS regularly. Many of us are probably starting to use them quite a bit, especially as part of a color or theming system. They really work great for this. But what about when we need alpha ...rgba color function
Ajayajay020.hashnode.dev·Jul 27, 2023What are custom properties in CSS?In CSS3, a feature called custom properties or CSS variables was introduced. This feature enables developers to define variables that can be reused. In a large project, we apply the same styles in many places, like a color used in many places. Now, s...CSS3
misbamishba.hashnode.dev·Apr 4, 2023Variables: CSS custom propertyWhat if your website contains a lot of CSS? or example,On your website, the same color is reused hundreds of places throughout the document, and later on if the color needs to change .The custom property stores the value at one place and then referen...CSS UnleashedCSS
Debasish Lenkadebasishlenka.in·Feb 5, 2023Custom Properties are Changing The Way We Style With CSSThe introduction of custom properties to the Cascading Stylesheet (CSS) language is one of the biggest developments in web development in recent memory. Custom properties give developers more flexibility and control over their designs, allowing for a...54 readsUpWebCSS
Eirik Madlandsynack.hashnode.dev·Dec 21, 2022CSS custom properties (also known as CSS variables)CSS custom properties are variables that can be defined in your CSS and reused throughout your stylesheet. They allow you to store values that can be used in multiple places, making it easier to manage and maintain your styles. How to define a CSS cu...36 readscustom properties