forumnz Posted June 1, 2008 Share Posted June 1, 2008 I use PHP to get some data from a database and display it. The text that is displayed goes on for too long. How do I use CSS to make it shorter? The div is 150px wide and I want the text to stay within that and not overflow. Thanks, Sam. Quote Link to comment Share on other sites More sharing options...
.josh Posted June 1, 2008 Share Posted June 1, 2008 ...are you wanting to know how to linebreak it to the next line at 150px wide? ...are you wanting to only display 150px wide worth, truncating the rest off? Quote Link to comment Share on other sites More sharing options...
forumnz Posted June 1, 2008 Author Share Posted June 1, 2008 Hi I want to have a line break. How would I do this? Thanks heaps! Sam. Quote Link to comment Share on other sites More sharing options...
haku Posted June 1, 2008 Share Posted June 1, 2008 If your text is within a p tag (which it should be), you can do it like this: HTML: <p id="lorem_text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> #lorem_text { width: 150px; padding: 0; } Quote Link to comment Share on other sites More sharing options...
pquery Posted June 9, 2008 Share Posted June 9, 2008 I' d also look at the overflow tag to see if one of those handlers would be a way you'd want to handle you text div Quote Link to comment Share on other sites More sharing options...
dbrimlow Posted June 9, 2008 Share Posted June 9, 2008 Use PHP. I do this with text that I want to only use @ 210 characters or so (just substitute $yourtextvariable, with your text variable name): $yourtextvariable = substr($yourtextvariable, 0, 210); Quote Link to comment Share on other sites More sharing options...
.josh Posted June 9, 2008 Share Posted June 9, 2008 He said he doesn't want to truncate he wants to line break. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.