CSS Image Sprites

CSS sprites are used to reduce the number of HTTP requests send to server. The smaller images are combined into a larger one at defined X and Y coordinates. After assigning this generated image to relevant page elements, using the background-position CSS property we can then shift the visible area to the required component image. Why we use image sprites: 1 : …

CSS3 Box Shadow

The box shadow property allows web designers to design multiple drop shadow(outer or inner) for any box element ,using values for color,size and offset etc. In this tutorial we are going to explain how we can use the box shadow property for drop shadow effect. The box shadow property can be assigned through comma separation in …

CSS: Background-Image & Background-Repeat

In this tutorial I am going to give an overview on: Background-image, a css property that sets one or more background images for an element like div, paragraph etc., which by default gets placed at the top-left corner of that element, and can be repeated vertically and horizontally or both by using Background-repeat property.  Through this tutorial you will know …