CSS
HTML
JavaScript
jQuery
PHP
SQL
WordPress
CSS Reference

Quick Reference

The var() function is used to create a CSS variable and insert the value into a property.

Global Variable

				
					/* declare the value of the property at a global level */
:root {
    --main-black-color: #2d2d2d;
}
				
			
				
					/* insert the variable value later in the styles and provide a  backup value for browsers that can't use variables */
div {
    background-color: var(--main-black-color, black);
}
				
			

Local Variable

				
					/* a variable set locally will override one set globally; #080808 will be used, not #2D2D2D */
@media screen and (max-width: 767px) {
    div {
        --main-black-color: #080808;
        background-color: var(--main-black-color, black);
    }
}
				
			

Syntax

				
					var(--name, value)

				
			

Values

ValueDescription
nameThe variable name; must start with two dashes (required)
valueThe fallback value; not necessary but should be included

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

CSS
HTML
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.