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

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -