在css中设置图片的背景图,怎么设置图片纵向拉伸
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在css中设置图片的背景图,怎么设置图片纵向拉伸相关的知识,希望对你有一定的参考价值。
background: url("../image/111.jpg") repeat-x scroll 0 0 transparent;
margin-bottom:0px;
margin-top:0px;
margin-left:0px;
margin-right:0px;
z-index:-1;
width: 100%;
height: 100%;
1.是一整张大图,尺寸和区域大小刚好吻合
2.一个很小的条状图,通过repeat后,形成一个很规则的大图背景。
css3出现以后,可以用background-size 属性来实现背景图拉伸填充。 而且这个属性在firefox,chrome,以及ie9上都可以使用。
具体使用方法如下:
背景图尺寸(数值表示方式):
#background-size background-size:200px 100px;
背景图尺寸(百分比表示方式):
#background-size background-size:30% 60%;
背景图尺寸(等比扩展图片来填满元素,即cover值):
#background-sizebackground-size:cover;
背景图尺寸(等比缩小图片来适应元素的尺寸,即contain值):
#background-size background-size:contain;
背景图尺寸(以图片自身大小来填充元素,即auto值):
#background-size background-size:auto; 参考技术A
background:url(image/1.jpg) no-repeat; background-size:auto 100%;
作用是:背景图片路径;背景图片不重复;背景图片高度自动,背景图片宽度100%自适应。
不过这种形式一般情况用的比较少,因为图片会变形。
body
padding:0;
margin:0;
background-image: url(../images/2.jpg);
background-repeat: repeat-y;
background-position: left top;
这是图片,你自己试一试。你可以用其他背景图实验。
参考技术C repeat-x 改为 repeat-y追问有没有把y拉伸的 不用重复
参考技术D 把这一句改一下:background: url("../image/111.jpg") repeat-x scroll 0 0 transparent;改成:background: url("../image/111.jpg") repeat-y scroll 0 0 transparent;
多测试一下!追问
有没有把y拉伸的 不用重复
追答拉伸啊?这个没有试过,也没有听说过!我只知道可以平铺!
怎么让网页的背景图片随着页面的拉伸而拉伸
参考技术A background-repeat : repeat | no-repeat | repeat-x | repeat-y 取值: repeat : 默认值。背景图像在纵向和横向上平铺 no-repeat : 背景图像不平铺 repeat-x : 背景图像仅在横向上平铺 repeat-y : 背景图像仅在纵向上平铺本回答被提问者采纳以上是关于在css中设置图片的背景图,怎么设置图片纵向拉伸的主要内容,如果未能解决你的问题,请参考以下文章