CSS中的变量用于将自定义属性值添加到您的网页。设置属性的自定义名称并为其设置值。
您可以尝试运行以下代码以在CSS中实现变量以更改背景和文本颜色
<!DOCTYPE html> <html> <head> <style> :root { --my-bg-color: blue; --my-color: white; } #demo { background-color: var(--my-bg-color); color: var(--my-color); } </style> </head> <body> <h1>Heading One</h1> <div id = "demo">This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </div> <br> </body> </html>