mirror of
https://github.com/servo/servo
synced 2026-05-10 00:52:08 +02:00
21 lines
436 B
HTML
21 lines
436 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>[simple<div>] blending</title>
|
|
|
|
<link rel="author" title="Aili Wang" href="mailto:augur521@hotmail.com">
|
|
<link rel="help" href="http://www.w3.org/TR/compositing-1/#mix-blend-mode">
|
|
<link rel="match" href="compositing_simple_div-ref.html">
|
|
|
|
|
|
<style>
|
|
#b{background-color:rgb(255,0,255); mix-blend-mode:difference; width:100px;height:100px
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="b"></div>
|
|
</body>
|
|
</html>
|