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
Post a Comment