html background-repeat:no-repeat; <body backgr
html background-repeat:no-repeat; <body backgr
日期:2016-09-29 14:22:41 人气:1
最好不要在html标签里直接添加css属性,表现与结构分离嘛。
把属性写在css文件里吧。
body{
background-image:url("路径");
background-repeat:no-repeat;
}