I wonder how to make a div glow in a specific color when the page has loaded.
<div id="glow" class="logo registrer"><a href="http://henricson.net/registrer.php" class="understrek">Registrer deg</a></div>
This is the div i want to glow. Thank you :)
CSS3 can do that:
-webkit-box-shadow:0 0 20px blue;
-moz-box-shadow: 0 0 20px blue;
box-shadow:0 0 20px blue;
Here's a JSFiddle that shows that it does, in fact, it works fine with me, check it out to see :)