16 lines
333 B
HTML
16 lines
333 B
HTML
<!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>
|