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

Cursor error with postgresql, pgpool and php -

delphi - ESC/P programming! -

c++ - error: use of deleted function -