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?

link|improve this question

2  
PS. There is a very valid reason to use only inline and not CSS; if you are creating HTML Email News Letters since Gmail now only supports inline styles and strips ID tags and Style blocks – user386301 Jul 8 '10 at 6:25
1  
Embedding html into blogging applications also often requires exclusive use of inline styles. Especially if you are embedding the html through a third party client and have no access to the user's themes. – providence Jul 19 '11 at 8:50
1  
There is a proposed CSS standard for this; no idea what sort of browser support it might have (hint: they could be using the custom tags like -moz, etc): w3.org/TR/2002/WD-css-style-attr-20020515 – Kato Aug 10 '11 at 17:37
1  
Hush you two. You're making way too much sense for the elite internet perfectionists to listen to you. – FriendlyDev Jan 5 at 19:27
Please check my answer. Thankyou – www.AppTec.net Mar 27 at 5:59
feedback

10 Answers

up vote 49 down vote accepted

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.

<script type="text/javascript">
  var link = document.createElement("link");
  link.setAttribute("rel","stylesheet");
  link.setAttribute("href","http://wherever.com/yourstylesheet.css");
  var head = document.getElementsByTagName("head")[0];
  head.appendChild(link);
</script>

caution : the above assume there is a head section.

link|improve this answer
1  
yup, keep with no inline CSS and you are good to go. – dusoft Jun 23 '09 at 15:10
3  
you can add css classes in javascript – Jonathan Fingland Jun 23 '09 at 15:13
3  
This isn't entirely correct. There is a CSS standard explaining how to add hover/visited/etc to links (with examples): w3.org/TR/2002/WD-css-style-attr-20020515 – Kato Aug 10 '11 at 17:35
2  
@Kato while that is a great link, and I really wish it worked, sadly it does not. Just to confirm, I tested using the syntax style="{color:green;} :hover { color: red; }" and firefox managed to color the link green, but ignored the hover. Chrome ignored both. Continued testing would be pretty pointless. – Jonathan Fingland Oct 4 '11 at 16:30
3  
I didn't state it as a working solution. I stated is wasn't "entirely" correct to say there is no inline equivalent and that pseudo selectors have no meaning outside stylesheets. How is that inappropriate? – Kato Oct 21 '11 at 21:24
show 8 more comments
feedback

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:

<a href="abc.html" onMouseOver="this.style.color='#0F0'" onMouseOut="this.style.color='#00F">Text</a>

Also, I can't remember for sure if this works in this context, you may have to switch it with document.getElementById('idForLink')

link|improve this answer
2  
i am quiet sure this will do just fine :) – Achshar Jun 26 '11 at 21:08
feedback

You can't do exactly what you're describing, since a:hover is part of the selector, not the CSS rules. A stylesheet has two components:

selector {rules}

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 style set can technically go most anywhere:

<style>
#uniqueid:hover {do:something;}
</style>
<a id="uniqueid">hello</a>
link|improve this answer
feedback

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:

<style type="text/css">
    myLinkClass:hover {text-decoration:underline;}
</style>
<a href="/foo" class="myLinkClass">Foo!</a>
link|improve this answer
2  
That idea will fortunately be dropped. (See lists.w3.org/Archives/Public/www-style/2009Jun/0341.html , under "Abandoned Working Drafts".) – Ms2ger Jun 23 '09 at 17:18
feedback

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.

link|improve this answer
While this is a work around but it seams a very good answer for me and the best answer if really its not possible to write inline hover – Amr ElGarhy Jun 23 '09 at 15:16
feedback
<style>a:hover { }</style>
<a href="/">Go Home</a>

Hover is a pseudo class, and thus cannot be applied with a style attribute. It is part of the selector.

link|improve this answer
1  
What is href="~/"? – Derek Aug 4 '11 at 18:36
@Derek I'm curious too – Pacerier Jan 4 at 10:05
feedback

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.

link|improve this answer
feedback

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 (")

link|improve this answer
feedback

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!

link|improve this answer
feedback

You can do it (But I agree with other guys as you shouldn't do it.)

link|improve this answer
all other answers said that it is not possible, but yours show that it is possible, your answer is different, I am testing it. – Amr ElGarhy Mar 27 at 12:18
Actually I needed the same thing as you do. I tested it but it did not worked for me. But I still think it should work as its by w3c. – www.AppTec.net Mar 27 at 12:25
Sorry, I just checked the date of the article. Its 10 years old. So there is no guarantee that it should work. If it does, please do tell me too. – www.AppTec.net Mar 27 at 12:27
I tested this: <a href="http://www.w3.org/" style="{color: #900} :link {background: #ff0} :visited {background: #fff} :hover {outline: thin red solid} :active {background: #00f}">...</a> But it didn't work – Amr ElGarhy Mar 27 at 12:45
check this stackoverflow.com/a/5293299/20126 what I understood that any pseudo code is not valid inside attributes – Amr ElGarhy Mar 27 at 12:49
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.