blob: b94f18dd4b594392cc4cdde889a860f9c149e2d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|