repo.or.cz
/
mozilla-central.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed GCC complaints (recursion fallout 3, yay).
[mozilla-central.git]
/
layout
/
reftests
/
margin-collapsing
/
block-abs-pos-2.html
blob
eaa42ea9dcba4f4bcc09c0e8923632aa1ac43698
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style
type
=
"text/css"
>
5
#a
{
6
background-color
:
green
;
7
width
:
200px
;
8
position
:
absolute
;
9
top
:
20px
;
left
:
20px
;
10
}
11
#b
{
12
background-color
:
blue
;
13
margin-top
:
40px
;
14
margin-bottom
:
40px
;
15
height
:
100px
;
16
}
17
</style>
18
</head>
19
<body>
20
<div
id
=
"a"
>
21
<div
id
=
"b"
></div>
22
</div>
23
</body>
24
</html>