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

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -