Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Terribly useful regex to run before committing code

// I use this regex/replace before I commit locally and before creating patches for Mozilla
// Will trim out random spaces/tabs at end of lines or if they take up the whole line.

s/^[ \t]+$|[ \t]+$//

Making bordercolor work in FireFox / Mozilla

IE and Safari support the bordercolor attribute directly on TABLE elements which colors the external and internal borders. FireFox does not, but you can use standard CSS to fix it.

TABLE { border: 1px solid #eee; }
TABLE TD { border: 1px solid #eee; }


Unlike most solutions, this also correctly changes the color of the cell borders.
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS