当前位置:Gxlcms > html代码 > background图片的问题_html/css_WEB-ITnose

background图片的问题_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:6人阅读

网站背景是一个整张大图,网页内容多了,就会repeat-y整张大图,现在把大图分成三段header footer 和中间的部分,现在想让header永远在最上面,中产是的这部分,如果页面内容多就repeat-y,footer永远在最下面。
各位大神求帮助。


回复讨论(解决方案)

现在把大图分成三段header footer 和中间的部分
re:
这三段还在一张图里?

background:transparent url(xxx.png) no-repeat scroll ?% ?%;


?% ?%界定header ,footer ,中间的高度

现在把大图分成三段header footer 和中间的部分
re:
这三段还在一张图里?

background:transparent url(xxx.png) no-repeat scroll ?% ?%;


?% ?%界定header ,footer ,中间的高度

已经切开变成3张图了

#header{...} #body{background:url(footer.png)repeat-y center center}#footer{background:url(footer.png)no-repeat center center}

#header{...} #body{background:url(footer.png)repeat-y center center}#footer{background:url(footer.png)no-repeat center center}


谢谢我试一下,敢问大神QQ多少

#header{position:fixed top;}
#body{background-image:url(),background-repeat:repeat-y;}
#footer{position:fexed bottom;}

人气教程排行