text dropshadow

liunx

Guest
I'm having trouble creating a text shadow. I've tried <p style="dropshadow:(color=#999999, strength=5)"> but it doesn't seem to be working. What's wrong?<!--content-->Try<br />
<p style="width:100%;filter:dropshadow(color=#999999, offx=5, offy=5, positive=true);">Your Text</p><br />
Change the offset to suit yourself.<br />
Good luck<!--content-->you could try something like this<br />
<br />
<br />
<style><br />
.shade1 { top:+5; left:+5; color:black; }<br />
.fill1 { top:0; left:0; color:red; }<br />
div { position:absolute; }<br />
</style> <br />
<br />
<div><br />
<div class="shade1"><br />
<h1 align="center">Shadow</h1><br />
</div><br />
<div class="fill1"><br />
<h1 align="center">Shadow</h1><br />
</div><br />
</div><!--content-->
 
Back
Top