Say I had a string of unknown length made up of regular characters.
How would i make it so that the width adjusted based on the string to always be 4 lines tall?
UPDATE:
This is does the trick:
$("p").css({height: $("p").height()*4});
$("p").css({width: $("p").width()/4});
Makes sense.. You would expect that if you wanted to increase the height 4 times, you would decrease the width 4 times