<article>
<article>
<h1>CSS3 Wrapping Drop Shadows</h1>
<p>Without extra bullshit markup. Fluid/liquid. All modern browsers.</p>
</article>
article {
article {
display: block;
position: relative;
width: 90%;
padding: 1.5em;
margin: 10em auto;
color: rgba(0,0,0, 0.8);
line-height: 1.5;
text-align: center;
background: #ccc;
text-shadow: 0 1px 0 #fff;
border-radius: 4px;
border-radius: 4px;
border-radius: 4px;
}
article:before, article:after {
z-index: -1;
position: absolute;
content: "";
bottom: 15px;
left: 10px;
width: 50%;
top: 80%;
max-width:300px;
background: rgba(0, 0, 0, 0.7);
box-shadow: 0 15px 10px rgba(0,0,0, 0.7);
box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
transform: rotate(-3deg);
transform: rotate(-3deg);
transform: rotate(-3deg);
}
article:after{
right: 10px;
left: auto;
transform: rotate(3deg);
transform: rotate(3deg);
transform: rotate(3deg);
}