I can't get this overflow ellipsis to work properly. The documentation examples all seem correct, so what am I missing?
p {
width: 100px;
height: 100px;
word-break: break-all;
border: 1px solid blue;
overflow: hidden;
text-overflow: ellipsis;
}
<p>
(long string of text)
</p>