CSS 参考手册
CSS left 属性
把图像的左边缘设置在其包含元素左边缘向右5像素的位置
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> img { position: absolute; left: 50px; } </style> </head> <body> <h1>This is a heading</h1> <img src="/examples/logocss.gif" width="95" height="84"> </body> </html>
运行结果:
点击运行 »