CSS drop shadows (1 Viewer)

mark

M&S Wine Gums FTW
Joined
Jun 6, 2001
Messages
5,093
i know you can add them to images, but anybody here ever add a drop shadow to a container div?
 
you could simulate it pretty easily by wrapping your div inside two or three external divs and give each external div a border bottom style, each border style colour increasing in lightness...

PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
	<title>Untitled</title>
	
	<style type="text/css" title="stylesheet" media="screen">
	/* <![CDATA[ */

	div
	{
		overflow: hidden;	
	}
	
	p
	{
		padding: 10px;
	}
	
	.container
	{
		border: 1px solid #bbb;
	}
	
	.ds01
	{
		border-bottom: 1px solid #ccc;
	}
	
	.ds02
	{
		border-bottom: 1px solid #ddd;
	}
	
	.ds03
	{
		border-bottom: 2px solid #eee;
	}
	
	/* ]]> */
	</style>
	
</head>
<body>

<div class="ds03">
	<div class="ds02">
		<div class="ds01">
			<div class="container">
				<p>why hello there</p>
			</div>
		</div>
	</div>
</div>

</body>
</html>

it's probably not a very elegant solution though.

could you create a css class to tile a gradient image along the bottom of the div?
 
the way i usually do it is by having a transparent png tiled down the body of the container for the side shadow, and then another on the footer, or add another div inside the container if needed. Obviously you'll have to use the transparent png fix for IE6

like this:

Code:
<div id="container">
     <div id="container-bottom">
          &nbsp;
     </div>
</div><!--container-->

or something like that. YOu might want to change the position of the container bottom div depending on how your layout is set up.
 

Users who are viewing this thread

Activity
So far there's no one here
Old Thread: Hello . There have been no replies in this thread for 365 days.
Content in this thread may no longer be relevant.
Perhaps it would be better to start a new thread instead.

21 Day Calendar

Lau (Unplugged)
The Sugar Club
8 Leeson Street Lower, Saint Kevin's, Dublin 2, D02 ET97, Ireland

Support thumped.com

Support thumped.com and upgrade your account

Upgrade your account now to disable all ads...

Upgrade now

Latest threads

Latest Activity

Loading…
Back
Top