CSS3 box-shadow
Quick CSS3 box-shadow demonstration
by Dongor7
HTML
<div>
Box shadows are pretty cool.ffffffffffffffffffffffffffffffffffffff
</div>
CSS
div {
display: flex;
background:#fcf8b3;
border:1px solid #aaa;
margin:10px;
padding:10px;
width:330px;
/**
* I'll keep my CSS3 here at the end for demonstration purposes and
* because the vendor prefixes really clutter things up
**/
box-shadow: 2px 2px 3px #888;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}