Just a quick post today, at some stage you may be using textarea in a page and you may notice that webkit browsers do something fancy

These browsers (chrome, safari etc) add a dragable resize handle to the bottom right corner of a textarea. This is great if you want the user to be able to do so, but it can also mess up your page layout quite nicely. So to stop this from happening, just add this one line of css to any textarea you like:

resize:none;

Thats all folks :p