I have a div with a text like this:
<div class="somos-especialistas">
<p><span style="color: #ff7a00;">Especialistas en climatización</span> <span style="color: #0092d4;">y deshumidificación de piscinas</span></p>
</div>
And I want the text inside the p tag to expand to full width of the container div.
CSS for the div:
.somos-especialistas
{
width: 960px;
font-stretch: expanded;
}
I used font-stretch: expanded; but it doesn't work. I saw that it doesn't have support on many browsers. Any idea on how to get that?
JsFiddle: check code here