11 lines
178 B
HTML
11 lines
178 B
HTML
<!doctype html>
|
|
<title>CSS test reference</title>
|
|
<style>
|
|
.contents {
|
|
will-change: opacity;
|
|
color: green;
|
|
}
|
|
</style>
|
|
<div class="contents">
|
|
Should be green.
|
|
</div>
|