blob: 67ba46d098f4841a0bda10ab88ef547f228157f8 (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.main {
border-image: url('1719346-1.gif') 16 fill / 16px / 0 repeat;
width: 100px;
height: 100px;
}
#mover {
position: fixed;
padding: 0;
margin: 0;
bottom: 0;
top: 100px;
left: 250px;
}
</style>
</head>
<body>
<div class="main"></div>
<div id="mover">text</div>
</body>
</html>
|