Из картинки ясно, каков будет результат.
Код: .cooltext { position: relative; height: 23px; } .ct-top,.ct-bot,.ct-contur { font: bold 20px Tahoma; display: inline-block; position: absolute; } .ct-top { color: #f19193; overflow: hidden; height: 13px; top: 0px; left: 0px; z-index: 999; } .ct-bot { color: #b41118; z-index: 888; } .ct-contur { top: 1px; left: 1px; color: #8c1517; z-index: 777; }
HTML Код: <div class="cooltext"> <b class="ct-top">текст</b> <b class="ct-bot">текст</b> <b class="ct-contur">текст</b> </div>
|