I'm trying to figure out how I can check with CSS if inside a button, an icon comes before or after the text, so I can manipulate it.
For example:
<a href="#" class="button"><i class="fa fa-plus"></i>TEXT</a>
or
<a href="#" class="button">TEXT<i class="fa fa-plus"></i></a>
How can I manipulate the size of the icons, depending on the position relative to the text?