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>