CSS

Resources and Tools

English: Computer-globe

Resources and Tools for Web Development:

1. Little Boxes
CSS Templates for various page layouts

2. Snipplr
Collection of code snippets – JavaScript, HTML, PHP, CSS, Ruby, Objective C

3. AJAX, DHTML and JavaScript Libraries
An extensive list with over… Continue reading

CSS layout Three columns and a Header

Three Column Liquid Layout Framework

This is a 3 columns fluid layout with a default width of 100%. All 3 columns are fluid, and adjust accordingly as the window is resized.

[codebox 1]

 

 

Css Magic – Drop Shadow and Transparency

Drop Shadow for all browsers

.shadow {

-moz-box-shadow: 3px 3px 4px #000;

-webkit-box-shadow: 3px 3px 4px #000;

box-shadow: 3px 3px 4px #000;

/* For IE 8 */

-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";

/* For IE 5.5 - 7 */

filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4,… Continue reading