🎶 Sym - 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台

📕 思源笔记 - 一款桌面端笔记应用,支持 Windows、Mac 和 Linux

🎸 Solo - B3log 分布式社区的博客端节点,欢迎加入下一代社区网络

♏ Vditor - 一款浏览器端的 Markdown 编辑器

CSS 其他 - 自定义变量

2019-08-26

描述

CSS 变量包含在整个文档中可重复使用的特定值。

HTML

<p class="custom-variables">CSS is awesome!</p>

CSS

:root {
  /* Place variables within here to use the variables globally. */
}
.custom-variables {
  --some-color: #da7800;
  --some-keyword: italic;
  --some-size: 1.25em;
  --some-complex-value: 1px 1px 2px whitesmoke, 0 0 1em slategray, 0 0 0.2em slategray;
  color: var(--some-color);
  font-size: var(--some-size);
  font-style: var(--some-keyword);
  text-shadow: var(--some-complex-value);
}

Demo

说明

  • :root CSS 伪类中可定义全局变量,他和文档中树的根结点元素相匹配。如果在块中进行定义,变量也可以在该选择器的作用域中使用
  • 使用 --variable-name: 声明一个变量
  • 使用 var(--variable-name) 函数可在整个文档中重复使用变量

浏览器支持

支持率:91.6%
支持情况:https://caniuse.com/#feat=css-variables

返回总目录

每天 30 秒系列之 CSS


欢迎注册黑客派社区,开启你的博客之旅。让学习和分享成为一种习惯!

3 评论
iwanna • 2019-08-26
回复 删除

image.png

iwanna • 2019-08-26
回复 删除

难受

Vanessa • 2019-08-26
回复 删除

image.png

这个不是重点,重点是变量