I know there's a way to restrict how wide text is in html/css but is there a way to restrict how tall text is? like on a paragraph, instead of the text continuing to the next line, have to stop at a certain height?
can you provide an example of what you are tyring to achieve?
you can limit the height of an entire paragraph of text by using div
#pheight { height: 200px;}
<div id=pheight><p>the quick brown fox jumps over the lazy dog the quick brown fox jumps over the lazy dog the quick brown fox jumps over the lazy dog the quick brown fox jumps over the lazy dog</p> </div>