vote up 3 vote down star
1

I've got a tabbed navigation bar where I'd like the open tab to have a shadow to set it apart from the other tabs. I'd also like the whole tab section to have a single shadow (see bottom horizontal line) going up, shading the bottom of all tabs except for the open one.

I'm going to use CSS3's box-shadow property to do it, but I can't figure out a way to shade only the parts I want. Normally I'd cover up the bottom shadow of the open tab with the content area (higher z-index), but in this case the content area itself has a shadow so that would just wind up covering the tab.

Tab layout

     _______    _______    _______
    |       |  |       |  |       |
____|_______|__|       |__|_______|______

Shadow line. Shadow would go up from the horizontal lines, and outward of the vertical lines.

                _______
               |       |
_______________|       |_________________

Here is a live example:

Any help out there, geniuses?

flag

Can you upload a testcase for us to try out. Also CSS3 isn't widely supported yet. – the_drow Sep 15 at 21:39
@the_drow you can see an example at: www.apwit.com/aplacetoputthings/tabs.html Thanks for your help! – Bloudermilk Sep 15 at 22:02
@the_drow Re: CSS3, I like to consider design features like drop shadows, rounded corners, etc. a reward for those users who use modern browsers. – Bloudermilk Sep 15 at 22:05

3 Answers

vote up 2 vote down check

on your sample change #content style (remove paddings)

#content {
    font-size: 1.8em;
}

and create a div inside #content with this style

#content_over_shadow {
    padding: 1em;
        position: relative; <-- look at this
        box-shadow: 0px 0px 8px 2px #888; <-- line shadow
        background:#fff;  <-- a solid background (non transparent)
}

add shadows to tabs:

#nav li a {
    margin-left: 20px;
    padding: .7em .5em .5em .5em;
    font-size: 1.3em;
    color: #FFF;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    box-shadow: 0px 0px 8px 2px #888; <--- the shadow
}

et voila

alt text

link|flag
I wound up doing something very similar to this. Thanks! – Bloudermilk Dec 2 at 21:05
vote up 0 vote down

Cut it off with overflow.

<style type="text/css">
    div div {-webkit-box-shadow:0 0 5px #000; height:20px}
    div {overflow:hidden;height:25px; padding:5px 5px 0 5px}

</style>
<div><div>tab</div></div>
link|flag
vote up 0 vote down

If you added two spans to hook onto then you could use two, something like:

box-shadow: -1px -1px 1px #000;

on one span and

box-shadow: 1px -1px 1px #000;

on another. Might work!

If the shadows overlap you could even use 3 shadows - one 1px to the left, one 1px to the right and one 1px up, or however thick you want them.

link|flag

Your Answer

Get an OpenID
or

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