25 lines
363 B
HTML
25 lines
363 B
HTML
<!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>
|