Does anyone know of a tutorial on how to do this, or does anyone have a little example?
example: http://hazelmade.com/projects.html
|
Does anyone know of a tutorial on how to do this, or does anyone have a little example? example: http://hazelmade.com/projects.html
| |||
|
feedback
|
|
The 'lifted corners' example on this CSS drop-shadows without images demo page shows it's possible without using images. It relies on CSS3 support, specifically Full details of the technique can be found in the main article by Nicolas Gallagher. | |||||||||
feedback
|
|
The shadow on that site is a custom made image tailored to the specific width of those elements: http://hazelmade.com/images/drop_shadow.png If you wanted to follow a similar technique that they did, you could just add a child image absolutely positioned below the div... jsfiddle example: http://jsfiddle.net/gbFNk/ HTML:
css:
Alternatively, if you need a drop shadow like that with varying width you make 2 shadows (one for each corner) and do something like the following: HTML:
css:
| ||||
|
feedback
|