I have an "article" tag and I want to make it have a fancy drop shadow with lifted corners. I want to avoid using images and make it purely with CSS if possible at all.
This is an example of something that looks like what I want to achieve:
Here is my code:
<div class="mainContent">
<div class="contentWrapper">
<article class="content">
</article>
</div>
<div>
And the CSS I have so far:
.mainContent{
background: #F8F8F8;
width: 100%;
position: absolute;
margin-top:500px;}
.contentWrapper {
margin: auto;
width: 1000px;
padding-top: 50px;}
.content {
margin-bottom: 50px;
padding: 40px;
border: #999 1px solid;
line-height: 25px;
color: #4D4D4D;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
background-color: #FFF;
box-shadow: 0px 0px 1px 1px #e1e1e1 inset, 0px 23px 30px -33px #4D4D4D;}