I have a case where i must write inline CSS code.
And i want to apply hover style on an anchor.
How to write a:hover in inline css inside the html style attribute?
|
|
|
|
|
|
|
short answer: you can't. long answer: you shouldn't. Give it a class name or an id and use stylesheets to apply the style :hover is a pseudo-selector and, for css, only has meaning within the style sheet. There is no inline-style equivalent (as it isn't defining the selection criteria). Edit Response to Question poster's comments See http://www.hunlock.com/blogs/Totally_Pwn_CSS_with_Javascript for a good script on adding css rules dynamically. also see http://www.quirksmode.org/dom/changess.html for some of the theory on the subject Edit 2 Also, don't forget, you can add links to external stylesheets if that's an option. e.g.
caution : the above assume there is a head section. |
||||||||||||||
|
|
|
You can't do exactly what you're describing, since
Inline styles only have rules; the selector is implicit to be the current element. The selector is an expressive language that describes a set of criteria to match elements in an XML-like document. However, you can get close, because a
|
||
|
|
|
|
Hover is a pseudo class, and thus cannot be applied with a style attribute. It is part of the selector. |
||
|
|
|
|
Inline pseudoclass declarations aren't supported in the current iteration of CSS (though, from what I understand, it may come in a future version). For now, your best bet is probably to just define a style block directly above the link you want to style:
|
||
|
|
|
No way to do this. Your options is to use javascript or css block. May be there is some javascript libary that will convert proprietary style attribute to style block. But then the code will not be standard complaint. |
||
|
|
|
|
According to your comments, you're sending a JS file anyway. Why not do the rollover in Javascript? JQuery's $.hover() method makes it easy, as does every other javascript wrapper. It's not too hard in straight javascript either. |
||
|
|
|
You can get the same affect by changing your styles with javascript, although its extremely inefficient if you need to change more than one thing:
Also, I can't remember for sure if |
||
|
|
|
|
.myRedLink A:hover { color:Red ; } my link |
||
|
|