I have a balise <li> that have a backgroup but the value of the li sometimes is too long .
so I want when the value is too long to show just the begin of the value then some point like that :
112312531821321 =======> 112312531..
Is there an option in CSS or HTML to do this ?
this is my code :
<ul >
<ui:repeat value="#{op.orderedOf}" var="vari" >
<li class="item" ><h:outputText value="#{vari}" /></li>
</ui:repeat>
</ul>