Link to home
Start Free TrialLog in
Avatar of Fajer39
Fajer39

asked on

Google font icon align with text in bootstrap button

Hello experts,

I have this simple code
<a href='#' class='btn btn-primary addContact'>
    <span><i class='material-icons'>person_add</i> Add contact</span>
</a>

Open in new window


How to align them well? With glyphicons it works, but with google font icons it's not so good.
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Add this custom style to your spreadsheet after you include the google fonts css.

.material-icons {
  vertical-align: middle;
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Fajer39
Fajer39

ASKER

Thanks Julian.
You are welcome.