I want to show text follwed by an icon.
I'm using material icons.
I want to achieve what it is on the left. But the right side is the one I'm getting.
I tried padding,margin,line height and everything but I couldn't make them align.
The Working webpage for the above issue is here
Html
<div class="package-rating-detail">
<label>{{package.rating}}</label>
<mdl-icon class="mdl-color-text--orange">star_rate</mdl-icon>
</div>
css
.package-rating-detail {
float: left;
margin-left: 20px;
}
So how can I align the label and the icon.