repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
block
/
positioning
/
050.html
blob
94c4e12be6047e3271e5d5b5b01a5edd01b3f94c
1
<html>
2
<style>
3
.box {
4
border:
2
px solid green;
5
padding:
2
px;
6
}
7
8
.container {
9
border:
2
px solid blue;
10
height:
100
px;
11
width:
100
px;
12
position: absolute;
13
padding:
10
px;
14
}
15
16
.leftright {
17
position:absolute;
18
left:
0
px;
19
right:
0
px;
20
top:
0
px;
21
height:
100
px;
22
}
23
24
.topbottom {
25
width:
100
px;
26
position:absolute;
27
top:
0
px;
28
bottom:
0
px;
29
left:
0
px;
30
}
31
</style>
32
<body>
33
<div
class
=
"container"
>
34
<div
class
=
"leftright box"
></div>
35
<div
class
=
"topbottom box"
></div>
36
<div
style
=
"width:100%; height:100%; background: gray;"
></div>
37
</div>
38
39
</body>