mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 11:18:39 +09:00
18 lines
325 B
HTML
18 lines
325 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<title>In visibility hidden color animation on pseudo element</title>
|
|
<style>
|
|
|
|
div:before {
|
|
visibility: visible;
|
|
color: blue;
|
|
content: "Color Animation";
|
|
}
|
|
|
|
div {
|
|
color: black;
|
|
visibility: hidden;
|
|
}
|
|
|
|
</style>
|
|
<div>color animation on visible psuedo element attached to invisible element</div>
|