Get icon from single png image
I have seen this so many times until now, but I never used myself. Can somebody explain how you can get specific icon picture from this single png image, for example the icons i selected with red ... using css That is called CSS sprites . It is used to cut down the http requests. Basically all icons are placed on a single canvas and are used as background-image property and later they are mapped using CSS background-position property, so for example .icon1 { background-image: url('YOUR_URL_HERE'); background-position: 10px 10px; /* X and Y */ height: 30px; width: 30px; } Demo So inshort just