I have div
and I need to put text on the left, another on the right, and a icon
centered, all aligned on top. I was able to get to this point, but so far I can not align them on top:
<div style="width=40%">
<a>
<h:outputLabel value="Alta Prioridade" style="float: left;"/>
<i style="margin-left: 50%; margin-right: 50%;" class="fa fa-thumb-tack" ></i>
<h:outputLabel value="08/10/2015" style="float: right; text-align: right;"/>
</a>
</div>