blob: a4ea6e860053f2544366448f3a1898322b58fdd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<title>Testcase, bug 764354</title>
<style>
#outer {
width: 300px;
height: 100px;
background: yellow; color: black;
}
.inner {
background: aqua; color: black;
text-align: center;
}
</style>
<div id="outer">
<div class="inner">Text</div>
<div class="inner">Text</div>
</div>
|