Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAndrew Keith
Full Stack JavaScript Techdegree Graduate 19,728 PointsCSS, JS or SQL?
If you are display text on a website and need it to be shortened with an ellipsis, performance wise, is it better to do that with CSS ( text-overflow ), JS ( substr ) or SQL ( SUBSTR() )?
1 Answer
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsCSS would be my first choice. That will allow the text to be truncated in a different place depending on how much space is available, which could change depending on whether they're on mobile or desktop, whether the user has changed their browser font size, etc.. If you do it in JS or SQL, you're going to have to guess exactly how much space will be available for that user, you're likely to guess wrong.
Andrew Keith
Full Stack JavaScript Techdegree Graduate 19,728 PointsAndrew Keith
Full Stack JavaScript Techdegree Graduate 19,728 PointsAwesome point about the flexibility of CSS. Thanks for responding!