1
I have a div
and I need to put a text to the left, another to the right, and a icon
centered, all aligned on top. I managed to reach this point, but so far I can’t 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>
CSS for class . left and . right does not need?
– Ozelo
Only if VC wants different values for left and/or right column
– Walker Leite