From the category archives:

css3

How to improve your web performance using CSS-Sprites

by harshit July 3, 2009 css3
Thumbnail image for How to improve your web performance using CSS-Sprites

CSS sprites is a technique to combine unlimited number of images into one to improve the performance of your web page.Have you ever seen the CSS technique where the “on” and “off” states of a button are contained within the same image and are activated by shifting the background-position? Think of CSS Sprites as an [...]

Read the full article → 6 comments

How to built shadow text using CSS

by harshit June 13, 2009 css3
Thumbnail image for How to built shadow text using CSS

What comes first in my mind,whenever I am thinking about creating a shadow text,just go to photoshop and uses shadow property(inner shadow ,outer shadow) ,but css3 provides a just a single line of code. To apply text shadow onto an element, add this CSS property in its style definition. text-shadow: 3px 3px 4px #000; The [...]

Read the full article → 4 comments