2013-09-15 16:43:12 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
<style>
|
|
|
|
#a {
|
|
|
|
background-color: rgb(0,255,0);
|
|
|
|
width: 200px;
|
|
|
|
height: 210px;
|
|
|
|
}
|
|
|
|
#b {
|
2013-10-22 05:31:00 -07:00
|
|
|
position: absolute;
|
|
|
|
top:80px;
|
|
|
|
filter:url(#f);
|
2013-09-15 16:43:12 -07:00
|
|
|
}
|
|
|
|
</style>
|
2013-10-22 05:31:00 -07:00
|
|
|
<svg height="0">
|
|
|
|
<filter id="f">
|
|
|
|
<feColorMatrix values="1 1 1 0 0
|
|
|
|
1 1 1 0 0
|
|
|
|
1 1 1 0 0
|
|
|
|
0 0 0 1 0"/>
|
|
|
|
|
|
|
|
</filter>
|
|
|
|
</svg>
|
2013-09-15 16:43:12 -07:00
|
|
|
<div id="a">
|
2013-10-22 05:31:00 -07:00
|
|
|
<div id="b">.</div>
|
2013-09-15 16:43:12 -07:00
|
|
|
</div>
|
|
|
|
</html>
|