Rumah > Artikel > hujung hadapan web > css怎么设置背景图大小
css中可使用background-size属性来设置背景图大小,语法“background-size:数值|百分比|cover|contain;”;其中cover代表等比扩展图片来填满元素,contain代表等比缩小图片来适应元素的尺寸。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
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="/try/demo_source/img_flwr.gif" alt="Flowers" width="224" height="162"></p> </body> </html>
css3 background-size 属性
background-size属性指定背景图片大小;在firefox,chrome,以及ie9上都可以使用。
具体使用方法如下:
背景图尺寸(数值表示方式):
#background-size{ background-size:200px 100px; }
背景图尺寸(百分比表示方式):
#background-size2{ background-size:30% 60%; }
背景图尺寸(等比扩展图片来填满元素,即cover值):
#background-size3{ background-size:cover; }
背景图尺寸(等比缩小图片来适应元素的尺寸,即contain值):
#background-size4{ background-size:contain; }
背景图尺寸(以图片自身大小来填充元素,即auto值):
#background-size5{ background-size:auto; }
(学习视频分享:css视频教程)
Atas ialah kandungan terperinci css怎么设置背景图大小. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!