Search Results

2
votes

Hide something with CSS without display:none or JavaScript

This is a common way: margin-left: -9999; …
1
vote

Is it ok to put html comments outside the <html> tags?

Any client should completely ignore comments, so they should not cause any problems. Anyway if the validator didn't complain it's probably ok. …
4
votes

What is the best way to determine which source files are no longer needed?

As with any refactoring, start by writing tests, once you have those, you can either delete one file at the time and undo if the tests fail or use …
3
votes

Single image file to store all the little images on a page

It's called css sprites. I's basically an old trick used in games programming where you load a single bitmap contain …
1
vote

Report decent printing in the web.

Support from different browsers is surely lacking, but css has a media type called print, to use it, just define a section in your css file or tag like this: @media print{ /* normal …