I have a grid of 12 boxes created from an unordered list as below. Border radius works fine, but IU can't get the shadow to appear. Does the box-shadow property only work on divs, but not display block elements?

   <ul id="treatments">
   <li id="eyelash"></li>
   <li id="massage"></li>
   <li id="tanning"></li>
   <li id="facials"></li>
   <li id="waxing"></li>
   <li id="tinting"></li>
   <li id="threading"></li>
   <li id="nails"></li>
   <li id="makeup"></li>
   <li id="hair"></li>
   <li id="courses"></li>
   <li id="bespoke"></li> 
   </ul>

    #content #treatments li {
    height: 125px;
    width: 125px;
    display: block;
    float: left;
    margin-right: 13px;
    margin-bottom: 13px;
   -moz-box-shadow: 1px 1px 2px #777;
   -webkit-box-shadow: 1px 1px 2px #777;
    box-shadow: 1px 1px 2px #777;
   -moz-border-radius: 8px;
    border-radius: 8px;
    behavior: url(/scipts/PIE.php);
    }
link|improve this question

0% accept rate
Please create a simplified test case. Your current test case does not contain enough information to help. Simply put, it should work. – Kevin Peno May 13 '11 at 15:20
It's working on Chrome and FF for me. Can't test on IE9, don't have it on my work XP machine...jsfiddle.net/MYTRe – anothershrubery May 13 '11 at 15:21
feedback

2 Answers

Worked fine for me. What browser are you in?

Here is a possible solution. Try removing #content

link|improve this answer
Removing #content does work for our scenario, running without any other context. I'd say that seeing as he says that the border-radius is working, that's not the problem. – anothershrubery May 13 '11 at 15:24
Without enough details all I can do is theorize on what the possible solution could be. I'm not having any issues with the mark up he provided. – SirB May 13 '11 at 15:27
feedback

You shouldn't have any issues with using box-shadow on li elements since box-shadow can be applied to all elements. Here's the section on box-shadow on the W3C site.

link|improve this answer
I'm viewing in Safari. The test page is here. spabycar.4pixels.com, but still no luck. Assuming it should work (thanks for making that clear), I'll just have to delve deeper into my CSS and see what's wrong (unless anyone can see anything obvious in from my link) – Andy Nightingale May 13 '11 at 17:26
ps spabycar.4pixels.com/test.html works, so it must be a conflict in the css. Just need to find it. – Andy Nightingale May 13 '11 at 17:33
@AndyNightingale It looks like it's working fine, it's just not easily distinguishable from the background - change the shadow colour to #700 and it'll be more obvious. – robertc May 13 '11 at 17:43
Yep, I can verify what @robertc said. It looks like it's working fine, it's just hard to see. – Matt Ratleph May 13 '11 at 19:34
Thanks guys. I feel a right t*t now for not seeing the wood for the trees. How often you look for the most complicated solution to the simplest of problems!! – Andy Nightingale May 14 '11 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.