mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:48:11 +00:00
LibWeb: Implement currentcolor
special value
The `currentcolor` identifier represents the current value of the `color` property. This is the default value for `border-color` and `text-decoration-color`, and is generally useful to have. :^)
This commit is contained in:
parent
86f78bff2a
commit
17bb913625
3 changed files with 9 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
|||
#g { background-color: rgba(0%, 100%, 0%, 1); }
|
||||
#h { background-color: hsl(120, 100%, 50%); }
|
||||
#i { background-color: hsla(120, 100%, 50%, 1); }
|
||||
#j { color: lime; background-color: currentColor; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -25,5 +26,6 @@
|
|||
<div id="g">This is green, using rgba(0%, 100%, 0%, 1).</div>
|
||||
<div id="h">This is green, using hsl(120, 100%, 50%).</div>
|
||||
<div id="i">This is green, using hsla(120, 100%, 50%, 1).</div>
|
||||
<div id="j"><span style="color: black;">This is green, using currentcolor.</span></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue