html - Can I define a rollover CSS style in-line? -


possible duplicate:
how write a:hover in inline css?

is possible this:

<a href="#">link</a>  a{ color: red; } a:hover{ color: blue; } 

as inline?

<a href="#" style="color: red; ....;">link</a> 

no. style="" allows define list of style properties. no css selectors allowed there.


Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -