Forum Moderators: not2easy
<p>
leading text
<span class="class1">
<span class="class2">
<span class="class3">
the special word or phrase
</span>
</span>
</span>
trailing text
</p>
<p>
leading text
<div class="class1">
<div class="class2">
<span class="class3">
the special word or phrase
</span>
</div>
</div>
trailing text
</p>
inline drop-shadow effect on a single word or phrase
<html>
<head>
<title>shadow</title>
<style>
.DSI-back {
border-bottom: 3px solid #cccccc;
border-right: 1px solid #cccccc;
margin: 0px 3px 0px 0px;
}
.DSI-middle {
border-bottom: 2px solid #666666;
border-right: 1px solid #666666;
}
.DSI-front {
border: 1px solid black;
background-color: #f8e7c7; /* background color of content */
color: #000000; /* text color of content */
}
</style>
</head>
<body>
<p>
This is an
<span class="DSI-back"><span class="DSI-middle"><span class="DSI-front">
inline shadow box
</span></span></span>
within a paragraph.
</p>
</body>
</html>