blob: 7b625649e7922c9363337aab987df668144921f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<title>color: transparent should not make other text below it not show up</title>
<style>
p {
color: transparent;
}
span {
color: red;
}
</style>
<p>
Only the <span>span</span> should show up.
</p>
|