Given some text that occupies about 10 rows, how can I resize its container to only show the first 3 rows and hide the others? Apparently this works, but I think it is not relia
you can set the line height of a text and with it knows the exact height of each row and set desired height of your container, simply doing this:
.container { line-height:25px; height:75px; overflow:hidden; }
Now everything works rightly :)