在CSS中,我们可以使用自定义属性(也称为CSS变量)来定义变量。这些变量可以在文档的根元素(:root 选择器)上定义,这样可以在整个文档中使用。 解决方案1: :root { --main-bg-color: coral; --main-text-color: white; } body