What is the HTML code for glowing text?
I would LOVE the HTML code for glowing text.
9 Answers
Relevance
- 1 decade agoFavorite Answer
use
filter:glow(color: here, strength=XX):
strength is how large the glow area is where XX is a number
example:
<style>
/*this makes the whole DIV and everything in it glow white. */
#div1 {filter:glow(color:white, strength:5);width:0}
/*this makes only the text inside span glow*/
#div1 span {filter:glow(color:red, strength:5); width:0}
</style>
<div id=div1>
<span>text in span tag</span>
text in div tag
</div>
NOTE: glow filter will only work if the filtered element has either height or width defined ie width:0 in the case above. remove that and it wont work
- macki4Lv 41 decade ago
check out photobucket.com, and there are a few more that have alkinds of glowing stuff.
- How do you think about the answers? You can sign in to vote the answer.
- ManisLv 41 decade ago
check the following links ...
Source(s): www.hypernews.org/HyperNews/get/www/html/guides/16/2.html www.siec.k12.in.us/~west/proj/present/exglowtext2.html www.htmlbasix.com/generators.shtml
Still have questions? Get your answers by asking now.