Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!--
Any copyright is dedicated to the Public Domain.
-->
<!DOCTYPE html>
<html>
<head>
<title>CSS Filters: Apply Opacity to an HTML Element Using a Factor Over One</title>
<link rel="author" title="Max Vujovic" href="mailto:mvujovic@adobe.com">
<link rel="match" href="opacity-over-one-ref.html">
<meta name="assert"
content="Given a factor over one, the CSS opacity filter function should
not change the opaqueness of an HTML element.">
<style type="text/css">
#below-target {
background-color: #f00;
width: 100px;
height: 100px;
}
#target {
filter: opacity(1000);
background-color: #0f0;
position: relative;
top: -100px;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<p>You should see a green square.</p>
<div id="below-target"></div>
<div id="target"></div>
</body>
</html>