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" style="max-width:90%"></p> </body> </html>
#css3 background-size 屬性
#background-size屬性指定背景圖片大小;在firefox,chrome,以及ie9上都可以使用。
特定使用方法如下:
背景圖片尺寸(數值表示方式):
#background-size{ background-size:200px 100px; }
#background-size2{ background-size:30% 60%; }
#background-size3{ background-size:cover; }
#background-size4{
background-size:contain;
}
#background-size5{ background-size:auto; }###(學習影片分享:###css影片教學###)# ##
以上是css怎麼設定背景圖大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!