html - Change Background position for icon -
i want add 5px spacing (top, left), between icon , background. more specific, need background-color lower icon. i'm not sure how can that.
html:
<span class="icon-background"> <i class="fa fa-pencil"></i> </span> css:
.icon-background { display: block; width: 30px; height: 30px; background-color: rgba(255, 255, 255, .5); background-position: 60px 60px; } .icon-background .fa { font-size: 24px; }
you can use margin:
.fa-pencil { margin-left: 5px; margin-top: 5px; }
Comments
Post a Comment