CSS中的var()函數用於為自定義屬性插入值。
用法:
var( custom_property, value )
參數:該函數接受下麵列出的兩個參數:
- custom_property:它是必需的參數。自定義屬性的名稱必須以兩個破折號(-)開頭。
- value:它是可選參數。如果自定義屬性無效,則使用它。
以下示例程序旨在說明CSS中的var()函數:
程序:
<!-- 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>
輸出:
支持的瀏覽器:var()函數支持的瀏覽器如下:
- 穀歌瀏覽器49.0
- 邊15.0
- Firefox 31.0
- Safari 9.1
- Opera 36.0
相關用法
- d3.js d3.hsl()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- PHP pi( )用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
注:本文由純淨天空篩選整理自Vishal_Khoda大神的英文原創作品 CSS | var() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。