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
/
paint
/
invalidation
/
fixed-position-with-text-expected.html
blob
01094d6e33f905950a1d61369a8ca12a06fa9984
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style>
5
body {
6
height:
300
px;
7
}
8
#div {
9
position: relative;
10
float: left;
11
z-index:
10
;
12
}
13
span {
14
display: inline-block;
15
border:
1
px solid black;
16
}
17
span:hover {
18
color: green;
19
}
20
</style>
21
</head>
22
<body>
23
<div
id
=
"div"
>
24
<span>
This text should be in a box
</span>
25
</div>
26
</body>
27
</html>