CSS 参考手册
CSS background-position 属性
- - 如何使用像素来定位背景图像 - 这个例子演示了如何使用像素设置页面上的图像位置。
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { background-image: url("/examples/smiley.gif"); background-repeat: no-repeat; background-attachment: fixed; background-position: 50px 100px; } </style> </head> <body> <p><b>注意:</b>该属性工作在 Firefox 和 Opera, background-attachment 属性会被设置为 "fixed"。</p> </body> </html>
运行结果:
点击运行 »