CSS3
CSS3 背景
重置背景图像
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { background: url(img_flwr.gif); background-size: 80px 60px; background-repeat: no-repeat; padding-top: 40px; } </style> </head> <body> <p> Lorem ipsum,中文又称“乱数假文”, 是指一篇常用于排版设计领域的拉丁文文章 ,主要的目的为测试文章或文字在不同字型、版型下看起来的效果。 </p> <p>原始图片: <img src="/examples/img_flwr.gif" alt="Flowers" width="224" height="162"></p> </body> </html>
运行结果:
点击运行 »