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