2
votes
Hide something with CSS without display:none or JavaScript
This is a common way:
margin-left: -9999;
…
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 …
4
votes
multiple CSS selectors
You are doing it right, but the order of the selectors is wrong, you need to put the element first, then the class, and then the id
div.myclass#myid { /*rules*/ }
…
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 …
