CSS | var() Function
The var() function in CSS is used to insert a value for custom property.
Syntax:
var( custom_property, value )
Parameters: This function accepts two parameters which are listed below:
- custom_property: It is the required parameter. The name of custom property must start with two dashes(–).
- value: It is optional parameter. It is used if custom property is invalid.
Below program illustrates the var() function in CSS:
Program:
<!-- HTML code to describes var() function in CSS --><!DOCTYPE html> <html> <head> <title>var() function</title> <style> :root { --main-bg-color: Green; } /* Use of var() function */ .gfg1 { background-color: var(--main-bg-color); padding:10px; } .gfg2 { background-color: var(--main-bg-color); padding: 5px; } h1 { color:green; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>var() function</h2> <div class = "gfg1">GeeksforGeeks</div><br> <div class = "gfg2">A computer science portal for geeks</div> </body> </html> |
chevron_right
filter_none
Output:

Supported Browsers: The browser supported by var() function are listed below:
- Google Chrome 49.0
- Edge 15.0
- Firefox 31.0
- Safari 9.1
- Opera 36.0
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- D3.js | d3.set.has() Function
- p5.js | red() function
- PHP | cos( ) Function
- PHP | sin( ) Function
- p5.js | min() function
- p5.js | tan() function
- p5.js | sin() function
- D3.js | d3.sum() function
- D3.js | d3.mean() function
- PHP | exp() Function
- PHP | Ds\Set xor() Function
- p5.js | log() function
- p5.js | cos() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



