blob: 77f60180373fc9914c2481194997101e4e5c7eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<style>
.outer {
/* Invert color/background so that it has more chances to disagree with the default background-color. */
color: Menu;
background-color: MenuText;
}
.inner {
height: 100px;
width: 100px;
padding: 10px;
background-image: url("green.png");
background-size: 0 0;
}
</style>
<div class="outer">
<div class="inner">X</div>
</div>
|