摘要: 【1】如果CSS属性值为0,那么你不必为其添加单位(如:px/em);下面是你可能的写法:padding: 10px 5px 0px 0px; 但是你可能这样写:padding: 10px 5px 0 0; 【2】背景(background)属性可能会包含设置背景色、背景图、背景图的位置和背景图重复方式的参数;下面是你可能的写法:background-image: url(“logo.png”); background-position: top center; background-repeat: no-repeat;但是你可以这样写:background: url(logo.png) no 阅读全文
posted @ 2014-01-26 11:28 huige728 阅读(332) 评论(0) 推荐(0) 编辑