Category Archive: CSS

Sep 14

CSS Specifics for Internet Explorer (IE hacks)

#1 IE Conditional Comments IE conditional comment is probably the most commonly used to fix the IE bugs for specific versions (IE6, IE7, IE8). Below are some sample code to target different versions of Internet Explorer: #2 CSS Rules Specific to Explorer (IE CSS hacks) Another option is to declare CSS rules that can only …

Continue reading »

May 01

How to align HTML dev tags in Horizontally (in a same line) using CSS

divalign

The following image will describe the scenario what i am going to explain further use the following code to create the above scenario using CSS and HTML

CSS

Apr 07

CSS Sprites (How to manage your all web images using one image with CSS)

example image using photoshop

What is CSS Sprites ? CSS sprites are a way to reduce the number of HTTP requests made for image resources referenced by your site. Images are combined into one larger image at defined X and Y coorindates. Having assigned this generated image to relevant page elements the background-position CSS property can then be used …

Continue reading »