CSS
CSS 背景
如果你不想让图像平铺,你可以使用 background-repeat 属性
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { background-image: url("/examples/img_tree.png"); background-repeat: no-repeat; } </style> </head> <body> <h1>Hello World!</h1> <p>mifengjc 背景图片实例。</p> <p>背景图片只显示一次,但它打扰到读者!</p> </body> </html>
运行结果:
点击运行 »