Before:
After:
Using the following pair of images:
My HTML:
<table class=full>
<tr>
<td class=showTemp2>
THE CONTENT GOES HERE<br><br>
SURROUNDED BY THE TWO SHADOW IMAGES<br><br>
AND THAT'S IT
</td>
</tr>
</table>
My CSS:
.full {
width: 900px;
}
.showTemp2 {
color: #1D2F9F;
padding-top: 30px;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 0px;
text-align: left;
font-size: 13px;
font-family: Verdana, 'Source Sans Pro';
font-weight: plain;
width: 100%;
}
The goal is to achieve the After image display, but I'm having trouble getting it right with my current CSS. The aim is for the images to expand and wrap around the text based on the width of the "full" table.
SOLUTION:
-moz-box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
box-shadow: 0 0 10px #ccc;