javascript - Add space between the two icons for all resolutions -
i have 1 static row 2 icons ion-email , ion-compose.
in demo there no space between icons. need add must work resolutions.
<div class="list"> <a class="item item-icon-right" href="#"> <i class="icon ion-email"></i> <i class="icon ion-compose"></i> check mail </a> </div>
i need add constant space between 2 icons.
here code: http://codepen.io/anon/pen/aozowz
try this
.icon{ position:inherit !important; display:inline-block !important; float:right; }
Comments
Post a Comment