CSS text-overflow: ellipsis; not working?

I don’t know why this simple CSS isn’t working… .app a { height: 18px; width: 140px; padding: 0; overflow: hidden; position: relative; margin: 0 5px 0 5px; text-align: center; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; color: #000; } <div class=”app”> <a href=””>Test Test Test Test Test Test</a> </div> Should cut off around the 4th “Test” … Read more

Limit text length to n lines using CSS

Is it possible to limit a text length to “n” lines using CSS (or cut it when overflows vertically). text-overflow: ellipsis; only works for 1 line text. original text: Ultrices natoque mus mattis, aliquam, cras in pellentesque tincidunt elit purus lectus, vel ut aliquet, elementum nunc nunc rhoncus placerat urna! Sit est sed! Ut penatibus … Read more