blob: 92105b51f2da67adeb4cfaebce7659d59a12175e (
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
27
28
|
<!DOCTYPE html>
<html>
<style>
#header {
position: fixed;
top: 0;
left: 9px;
}
#header > div {
border-radius: 10px;
overflow:hidden;
height: 100px;
width: 100px;
}
#inner {
width: 200px;
height: 200px;
background-color:green;
}
</style>
<div id="section">
<div id="header">
<div>
<div id="inner"></div>
</div>
</div>
</div>
</html>
|