I need to create a one pixel shadow on three sides of an element using box shadow. I'm using the following code, except it's creating a two pixel border but I only need one.

    -moz-box-shadow: 0 1px 1px #c00
-webkit-box-shadow: 0 0 1px 0 #c00
      box-shadow: 0 0 1px 0 #c00
link|improve this question

Any reason you are not using border: 1px solid #c00? – ChrisR Mar 18 '11 at 14:45
Yes, because border will extend the edges of the box model of the elements, which will cause problems. Sorry, should have just said shadow instead of border. ;-) – Cofey Mar 18 '11 at 14:55
3  
“border will extend the edges of the box model of the elements, which will cause problems” — okay, two possibilities there. 1. Use a negative margin of the sides with the border to reverse the box model effect. 2. Use box-sizing: border-box;, which works in IE 8 and recent other browsers. – Paul D. Waite Mar 18 '11 at 14:59
feedback

2 Answers

up vote 6 down vote accepted

Try 3 shadows, no blur. http://jsfiddle.net/leaverou/8tgAp/

link|improve this answer
I had no idea you could apply multiple box-shadows. Great stuff. There’s the answer, right there. – Paul D. Waite Mar 23 '11 at 2:59
1  
You don't even need 3 box shadows, 2 suffice - jsfiddle.net/Razvan/VxzvQ – Razvan Cercelaru Mar 26 at 10:08
@RazvanCercelaru This leaves one pixel at the top with no border, see: jsfiddle.net/leaverou/VxzvQ/2 This may or may not be acceptable, depending on the use case. – Lea Verou Mar 28 at 7:57
feedback

Using the normal border declaration is the way to go, but if—for whatever reason—you're unable to use border, then you can hide one side of the shadow with the :before or :after pseudo-selector.

Example:

body {background-color: #000; color: #fff}

.module {
    height: 100px;
    width: 100px;
    background-color: #000;
    -moz-box-shadow: 0 0 2px #f00;
    -webkit-box-shadow: 0 0 2px #f00;
    box-shadow: 0 0 2px #f00;
}

.module:before {
  content: '';
  border-top: solid #000 1px;
  display: block;
  position: relative;
  top: -1px;
}

You can see it in action here: http://jsfiddle.net/3nspR/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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