css - align text center with icon next to it -
i have following code:
<div class="icon-search small-collapse large-2 medium-12 small-12 hide-for-medium-down js-hide-for-small columns"> <input type="submit" value="{{ 'search'|trans }}" class="button"> </div>
and css icon is:
.icon-search:before{ top: 15px; left: 18px; position: absolute; z-index: 9999; color: white; font-size: 2.2rem; }
however value "value='{{ 'search'|trans }}'" dynamic because of language selection.
how can make sure "icon-search" 5px away value return "{{ 'search'|trans }}" , both aligned centered?
Comments
Post a Comment