Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Can you upload a testcase for us to try out. Also CSS3 isn't widely supported yet. – the_drow Sep 15 '09 at 21:39
@the_drow you can see an example at: www.apwit.com/aplacetoputthings/tabs.html Thanks for your help! – bloudermilk Sep 15 '09 at 22:02
18  
@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 '09 at 22:05
2  
WOW this is exactly exactly what I needed, glad a question already exists. I too want to apply this to a tab exactly like you showed, wow wow wow :D – Jorge Israel Peña Jan 6 '10 at 23:31
7  
+1 for ASCII art – GarciaWebDev May 29 '12 at 22:39

6 Answers

up vote 61 down vote accepted

In your sample create a div inside #content with this style

#content_over_shadow {
    padding: 1em;
    position: relative; <-- look at this
    background:#fff;  <-- a solid background (non transparent)
}

and change #content style (remove paddings) and add shadow

#content {
    font-size: 1.8em;
    box-shadow: 0 0 8px 2px #888; <-- line shadow
}

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: 0 0 8px 2px #888; <--- the shadow
}

et voila

alt text

share|improve this answer
I wound up doing something very similar to this. Thanks! – bloudermilk Dec 2 '09 at 21:05
1  
Great answer, thank you very much! – Michael Robinson Jul 19 '10 at 11:59
There's something missing from this solution. Editing his code and applying the styles recommended, you still end up with a shadow over the 'selected' tab. Seems as though there is an overflow: hidden missing? – Bob Spryn Sep 7 '10 at 22:04
1  
Yep. You would need an overflow: hidden on the nav to make it work. – Bob Spryn Sep 7 '10 at 22:10
1  
The 'line shadow' shown in #content_over_shadow should actually be in #content's style. – AppleGrew Sep 12 '11 at 18:41

Cut it off with overflow.

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

</style>
<div><div>tab</div></div>
share|improve this answer
1  
Here's also an example with cutting it off with overflow starikovs.com/2011/11/09/css3-one-side-shadow. – infous Nov 9 '11 at 14:36
This method will only work when it is the bottom side that you don't want the shadow on – andrhamm Jun 27 '12 at 16:02

You can use multiple CSS shadows without any other divs to get desired effect, with the caveat of of no shadows around the corners.

-webkit-box-shadow: 0 -3px 3px -3px black, 3px 0px 3px -3px black, -3px 0px 3px -3px black;
-moz-box-shadow:    0 -3px 3px -3px black, 3px 0px 3px -3px black, -3px 0px 3px -3px black;
box-shadow:         0 -3px 3px -3px black, 3px 0px 3px -3px black, -3px 0px 3px -3px black;

Overall though its very unintrusive.

share|improve this answer
This would be a great solution, but as you say, the corners are wonky. jsfiddle.net/mahemoff/ZStTr – mahemoff Mar 25 '12 at 23:37
However, it works really well for inset shadows. – M. Anthony Aiello Mar 1 at 17:10

Personally I like the solution found here best: http://css3pie.com/demos/tabs/

It allows you to have a zero state or a hover state with a background color that still has the shadow from the content below overlaying it. Not sure that's possible with the method above:

shadowed tab with hover state

UPDATE:

Actually I was incorrect. You can make the accepted solution support the hover state shown above. Do this:

Instead of having the positive relative on the a, put it on the a.active class with a z-index that is higher than your #content div below (which has the shadow on it) but is lower than the z-index on your content_wrapper.

For example:

<nav class="ppMod_Header clearfix">
    <h1 class="ppMod_PrimaryNavigation-Logo"><a class="ppStyle_Image_Logo" href="/">My company name</a></h1>
    <ul class="ppList_PrimaryNavigation ppStyle_NoListStyle clearfix">
        <li><a href="/benefits">Benefits</a></li>
        <li><a class="ppStyle_Active" href="/features">Features</a></li>
        <li><a href="/contact">Contact</a></li>
        <li><a href="/company">Company</a></li>
    </ul>
</nav>
<div id="ppPage-Body">
    <div id="ppPage-BodyWrap">
        content goes here
    </div>
</div>

then with your css:

#ppPage-Body
    box-shadow: 0 0 12px rgba(0,0,0,.75)
    position: relative /* IMPORTANT PART */

#ppPage-BodyWrap
    background: #F4F4F4
    position: relative /* IMPORTANT PART */
    z-index: 4 /* IMPORTANT PART */


.ppList_PrimaryNavigation li a:hover
    background: #656565
    -webkit-border-radius: 6px 6px 0 0
    -moz-border-radius: 6px 6px 0 0
    border-radius: 6px 6px 0 0

.ppList_PrimaryNavigation li a.ppStyle_Active
    background: #f4f4f4
    color: #222
    -webkit-border-radius: 6px 6px 0 0
    -moz-border-radius: 6px 6px 0 0
    border-radius: 6px 6px 0 0
    -webkit-box-shadow: 0 0 12px rgba(0,0,0,0.75)
    -moz-box-shadow: 0 0 12px rgba(0,0,0,0.75)
    box-shadow: 0 0 12px rgba(0,0,0,0.75)
    position: relative /* IMPORTANT PART */
    z-index: 3 /* IMPORTANT PART */
share|improve this answer

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.

share|improve this answer

you can cover up shadow using multiple box shadows as well.

box-shadow: 0 10px 0 #fff, 0 0 10px #ccc;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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