css问题:background url 后的数字表示什么
css问题:background url 后的数字表示什么
日期:2017-11-27 00:49:57 人气:2
background:url(../images/nav-bg.gif) 0px -32px no-repeat;
对应
background:url(路径) top(也就是距容器上边距的距离) left(也就是距容器左边距的距离) 重复方式;
也可以分开写成不同的属性:
background-url:'../images/nav-bg.gif';
background-position:0px -32px;
background-repeat