请问如何设定div的背景图片适应div的大小??

时间:2022-08-26 20:31:16
div.myResult
{
margin-left:auto;
margin-right:auto;
width:450px;
height:400px;
background-image:url('../Img/teacher.jpg');
background-repeat:repeat;
}

我用了 background-repeat:repeat;但是没有用

9 个解决方案

#1


background:url('../Img/teacher.jpg') repeat;
将margin-left:auto; margin-right:auto; 修改为margin-left:0; 
margin-right:0; 

#2


将margin-left:auto; margin-right:auto; 修改为margin-left:0; 
margin-right:0;
还是不行

#3


没有人知道了吗?帮帮忙啊

#4


div.myResult
{
width:450px;
height:400px;
background:url('../Img/teacher.jpg');

#5


background 里面没有拉伸这属性的,如果要做就拿img可以适应你的div层大小

#6


用PS拉伸一下吧,做得淡一点,这样就看不出来失真了 

#7


该回复于2010-01-27 09:54:21被版主删除

#8


background-repeat:repeat; 


这个写的应该是对的 问题可能出在你没有贴出的代码上  比如在DIV里面直接设置了不平铺图片

#9


背景是无法与窗口大小自适应的

#1


background:url('../Img/teacher.jpg') repeat;
将margin-left:auto; margin-right:auto; 修改为margin-left:0; 
margin-right:0; 

#2


将margin-left:auto; margin-right:auto; 修改为margin-left:0; 
margin-right:0;
还是不行

#3


没有人知道了吗?帮帮忙啊

#4


div.myResult
{
width:450px;
height:400px;
background:url('../Img/teacher.jpg');

#5


background 里面没有拉伸这属性的,如果要做就拿img可以适应你的div层大小

#6


用PS拉伸一下吧,做得淡一点,这样就看不出来失真了 

#7


该回复于2010-01-27 09:54:21被版主删除

#8


background-repeat:repeat; 


这个写的应该是对的 问题可能出在你没有贴出的代码上  比如在DIV里面直接设置了不平铺图片

#9


背景是无法与窗口大小自适应的