I am attempting to control the number of characters in a paragraph to a specific limit. If the text is shorter, I want to add whitespace padding, and if it exceeds the limit, I will truncate it with an ellipsis. All containers containing paragraphs should have the same size.
Utilizing a responsive grid means my container will adjust dynamically based on the paragraph length. Although I tried integrating pre-wrap into the p element, the divs remain unresponsive. It seems like the extra whitespace is being ignored.
p
{
white-space: pre-wrap;
}
Here is a JSFiddle that demonstrates my issue: http://jsfiddle.net/RFBza/4/