Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
18  
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
7  
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
6  
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
6  
Hush you two. You're making way too much sense for the elite internet perfectionists to listen to you. – FriendlyDev Jan 5 '12 at 19:27
possible duplicate of Is is possible to create inline pseudo styles? – Synetech Nov 20 '12 at 2:20

12 Answers

up vote 99 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.

share|improve this answer
3  
you can add css classes in javascript – Jonathan Fingland Jun 23 '09 at 15:13
8  
There are other circumstances where inline CSS is the only option - such as HTML emails (eg. Gmail ignores CSS unless it is inline). Unfortunately with Javascript stripped in most email clients as well I have not yet found a way of adding :hover effects. – Simon Nov 1 '10 at 2:24
20  
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
7  
@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
4  
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 14 more comments

You can get the same effect by changing your styles with Javascript in the onMouseOver and onMouseOut parameters, although it's extremely inefficient if you need to change more than one element:

<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')

share|improve this answer
3  
i am quiet sure this will do just fine :) – Achshar Jun 26 '11 at 21:08
this worked just fine for me. – Daydah Sep 7 '12 at 9:27
that's smart! Works for a background color hover effect as well <div onMouseOver="this.style.backgroundColor='#F8F8F8'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> ... – mxro Jan 8 at 3:52

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>
share|improve this answer
Actually you can’t: “HTML permits any number of STYLE elements in the HEAD section of a document.” (w3.org/TR/html4/present/styles.html#edef-STYLE) – Éric Araujo May 31 '12 at 3:00
3  
@ÉricAraujo it won't validate, but I haven't seen a browser that won't accept it. – Rex M May 31 '12 at 3:01

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

share|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 '12 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. – Ak1to Mar 27 '12 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. – Ak1to Mar 27 '12 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 '12 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 '12 at 12:49
show 5 more comments

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.

share|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
<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.

share|improve this answer
1  
What is href="~/"? – Derek 朕會功夫 Aug 4 '11 at 18:36
@Derek I'm curious too – Pacerier Jan 4 '12 at 10:05
2  
@Derek in case still of interest / for anyone else reading: "~/" (tilde forward slash) is a server-side reference to the application root in asp.net web applications. (The application root may be a sub-folder of course). It's use here would not have been correct, hence the reason the answer has been edited since you asked the question (I suspect). – Chris Oct 8 '12 at 14:45
@Chris - Thanks for the explanation... – Derek 朕會功夫 Oct 9 '12 at 0:08

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>
share|improve this answer
3  
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

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.

share|improve this answer

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!

share|improve this answer

As pointed out you cannot set arbitrary inline styles for hover but you can change the style of hover cursor in css using:

style="cursor: pointer;"

in the appropriate tag.

share|improve this answer

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

share|improve this answer

You can use the pseudo-class a:hover in external style sheets only. Therefore I recommend using an external style sheet. Code is:

a:hover {color:#FF00FF;}   /* mouse over link */
share|improve this answer
1  
This is not correct. A pseudo-class can be used in both internal and external style sheets. A pseudo-class cannot be used in an inline style. – Chris Oct 8 '12 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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