Re: [css-d] (Second Posting...anyone know?) How can I create a shadow around a div without the imageinside?

2005-10-17 Thread David Laakso
Rick Faircloth wrote: Any hints? See code below.. Rick I have no idea, but you show raw numbers for height and width? If you are atttempting a drop shadow created with CSS for a division, you might check this: http://www.cssplay.co.uk/menu/shadow.html -Original Message-

RE: [css-d] (Second Posting...anyone know?) How can I create a shadow around a div without the imageinside?

2005-10-17 Thread Rick Faircloth
I checked out another of the demos on the cssplay site and found this code, but I can't see what is creating the shadow...in the other code I tried, filter:shadow was used, but what in the code below creates the shadow? Rick .out { display:block; background:#bbb; border:1px solid #ddd;

Re: [css-d] (Second Posting...anyone know?) How can I create a shadow around a div without the imageinside?

2005-10-17 Thread Kelly Miller
There are a number of ways of doing shadows in CSS. The one you're asking about uses two divs; the out is the shadow and the in is the main div. The code simply makes the out div offset to the right bottom and colours the background black (with a grey border, so it appears to blur).

Re: [css-d] (Second Posting...anyone know?) How can I create a shadow around a div without the imageinside?

2005-10-17 Thread Derek de Jong
I'm trying to create a drop-shadow around a div. I want to put text in an inner div, but I can only get the shadow to show around the outside of the inner div if there's an image present. How can I change this code to create the shadow around the inner div without the image? Is it possible?