I have a div with text-align: justify
which contains a few words spread out to fill the div, one of which is "Free▼". On Mozilla, "Free▼" is printed as one word, but on Chrome, it is separated into two different words, as illustrated in this fiddle: ( http://jsfiddle.net/806hjj7a/ ).
Does anyone know how I can make strings containing special characters print as one word?
<div class="justify">
Lorem ipsum Ullamco quis ut Free▼
</div>
---
.justify {
text-align: justify;
}
.justify:after {
content: "";
display: inline-block;
width: 100%;
height: 0;
line-height: 0;
}