Is there a way to add a shadow effect to only one border while keeping the others sharp using CSS? Are there alternative techniques I am not aware of?
#panel {
-moz-box-shadow:0 1px 10px #00c6ff;
-webkit-box-shadow: 0 1px 10px #00c6ff;
box-shadow:0 1px 10px #00c6ff;
width:25%;
height: 50px;
background-color:#161616;
color: #fff;
margin: 20px auto;
text-align: center;
}
HTML
<div id="panel">
<p>Panel Content</p>
</div>
I'm attempting to achieve a design similar to this: