blob: 3b57608a2375062cb260a266be03ae74f3971f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE HTML>
<title>Reference, bug 1402060</title>
<style>
.blackAtTop {
width: 100px;
height: 90px;
border-top: 10px solid black;
}
.blue {
width: 100px;
height: 100px;
background: blue;
margin-left: 10px;
}
.white {
width: 90px;
height: 90px;
background: white;
}
</style>
<div class="blackAtTop"><div class="blue"><div class="white"></div></div></div>
|