Quantcast
Channel: css Archives - My Monkey Do
Viewing all articles
Browse latest Browse all 26

Text with Inner Shadow

$
0
0

The guys on stackoverflow are just geniuses.  This is one way to make beautiful text inner shadows:

 

.depth {
    display: block;
    padding: 50px;
    color: black;
    font: bold 7em Arial, sans-serif;
    position: relative;
}

.depth:before, .depth:after {
    content: attr(title);
    padding: 50px;
    color: rgba(255,255,255,.1);
    position: absolute;
}

.depth:before { top: 1px; left: 1px }
.depth:after  { top: 2px; left: 2px }

 

source: http://stackoverflow.com/questions/2889501/inner-text-shadow-with-css/8859832#8859832
keywords: css font inset


Viewing all articles
Browse latest Browse all 26

Trending Articles