Text wrapping inside a table

Sometimes I have a long continuing string inside a table that messes up my table width. For example,

SDFSDFDGFHDGREFGFGSDFGFGHGDSFGHJTYRGHTYYEGHJTRTWEGRTYEGFHERGHRETERHRTTWERHGEWGERGW

That will give you a very wide column… Just how to squeeze the column to the width we specify?

“Easy,” you might say, “just set the td width!”

SDFSDFDGFHDGREFGFGSDFGFGHGDSFGHJTYRGHTYYEGHJTRTWEGRTYEGFHERGHRETERHRTTWERHGEWGERGW

Nope. It turns out the same, one long continuous string.

The root problem here is that, the table width is determined by the content, but not the width we specify!

There is this css attribute for the table called table-layout, it disables the usual auto-layout and follows the widths specified. Thus our table will not be shaped by the table content.

SDFSDFDGFHDGREFGFGSDFGFGHGDSFGHJTYRGHTYYEGHJTRTWEGRTYEGFHERGHRETERHRTTWERHGEWGERGW

OK… So our column now has the specified width, but now the long string goes out of the table column. The content spills over. Even though this is the default behavior in html, it doesn’t look right.

Luckily there is this css attribute called word-wrap. Its function is to break up long continuous words.

SDFSDFDGFHDGREFGFGSDFGFGHGDSFGHJTYRGHTYYEGHJTRTWEGRTYEGFHERGHRETERHRTTWERHGEWGERGW

So there you have it, table-layout: fixed and word-wrap: break-word will fix the issue.

PSD to CSS

I found this nice video tutorial recently. Say you hire someone or somehow you have a website design on a psd file, now you need to convert that to actual webpages. You can actually do that yourself without getting other people to do it. It might be much easier than you think!

I am assuming you already have some knowledge in HTML and CSS… if not… it’s a good idea to learn them! 😉

Step 1: Writing the Markup
http://blip.tv/play/gcMV5ZUBAg%2Em4v

Step 2: Coding the CSS
http://blip.tv/play/gcMV5f4VAg%2Em4v