所以我有以下标记:
background: #7BC145 url(/images/ill_people_leadGen.png) no-repeat right top;
它几近完美但我只是想在图像上添加一些余量,只是想知道如何将其添加到上面。
答案 0 :(得分:12)
background: #7BC145 url(/images/ill_people_leadGen.png) no-repeat right 10px;
答案 1 :(得分:3)
假设你想要5个像素的“边距”:
/** replace 'top' with this vvv */
background: #7BC145 url("REDACTED") no-repeat right 5px;
答案 2 :(得分:2)
这样的东西?
background: #7BC145 url(/images/ill_people_leadGen.png) no-repeat 100% 5px;
答案 3 :(得分:0)
只需将margin-top:10px;
添加到同一行background: #7BC145 url(/images/ill_people_leadGen.png) no-repeat right top; margin-top:10px;