blob: 17d816f7f637991ba942552184b48cdf11754981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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;
}
</style>
<div class="outer">
<div class="inner">X</div>
</div>
|