I have a case where I must write inline CSS code, and I want to apply a hover style on an anchor.
How can I use a:hover in inline CSS inside the HTML style attribute?
|
I have a case where I must write inline CSS code, and I want to apply a hover style on an anchor. How can I use |
|||||||||||||||||||
|
|
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 get the same effect by changing your styles with Javascript in the
Also, I can't remember for sure if |
|||||||||
|
|
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
|
|||||||
|
|
You can do it (But I agree with other guys as you shouldn't do it.) |
|||||||||||
|
|
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. |
|||
|
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. |
|||
|
|
|
I just figured out a different solution. My issue: I have an tag around some slides/main content viewer as well as tags in the footer. I want them to go to the same place In IE, the whole paragraphs would be underlined onHover, even though they're not links... the slide as a whole is a link. IE doesn't know the difference... Well, I also have some actual links in my footer that do need the underline and color change, onHover.... I thought I would have to put styles inline with the footer tags to make the color change, but advice from above suggests that this is impossible. Solution: I gave the footer links two different classes, and my problem was solved. Able to have the onHover color change in one class, have the slides onHover not have a color change/underline and still able to have the external hrefs in the footer and the slides at the same time! |
|||
|
|
|
As pointed out you cannot set arbitrary inline styles for hover but you can change the style of hover cursor in css using:
in the appropriate tag. |
|||
|
|
|
i agree with shadow, you could use the onmouseover and onmouseout event to change the css via js. and dont say people need to have js activated bla bla, thats their own prob bro, its only a style issue so it doesnt matter if there are some visitors without js ;) although most ob web2.0 works with js. see facebook for example (lots of js) or myspace (") |
|||
|
|
|
You can use the pseudo-class
|
|||||
|