blob: 81441c67c2a80e2f47da4d17d25edcd5149de9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<head>
<title>variables test</title>
<style>
:root {
--10: 10px;
---blue: blue;
}
#a {
font-size: var(--10);
}
#b {
color: var(---blue);
}
</style>
</head>
<body>
<div id="a">A</div><br>
<div id="b">B</div>
</body>
</html>
|