What is a CSS custom property?
- A A vendor-prefixed property
- B A user-defined variable declared with two dashes and read with var()
- C A property only available in Sass
- D An inline style attribute
Answer
A user-defined variable declared with two dashes and read with var()
Custom properties cascade and can be changed at runtime with JavaScript, which is how theme switching is usually implemented.





