vote up 4 vote down star

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?

flag

8 Answers

vote up 11 vote down check

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.

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

caution : the above assume there is a head section.

link|flag
1  
yup, keep with no inline CSS and you are good to go. – dusoft Jun 23 at 15:10
the problem that i can't do so, i am sending a javascript file in http response and js creates the html code and the css inline, and can't send another file. i know 100% that its better to use style sheet files – Amr ElGarhy Jun 23 at 15:11
1  
you can add css classes in javascript – Jonathan Fingland Jun 23 at 15:13
@Jonathan Fingland how? can you remind me with s short sample? – Amr ElGarhy Jun 23 at 15:14
see quirksmode.org/dom/changess.html for details on adding css classes. (read all the way to the bottom) – Jonathan Fingland Jun 23 at 15:19
show 2 more comments
vote up 0 vote down

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|flag
vote up 0 vote down
<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|flag
vote up 0 vote down

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|flag
That idea will fortunately be dropped. (See lists.w3.org/Archives/Public/… , under "Abandoned Working Drafts".) – ms2ger Jun 23 at 17:18
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
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 at 15:16
vote up 0 vote down

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|flag
vote up 0 vote down

.myRedLink A:hover { color:Red ; } my link

link|flag

Your Answer

Get an OpenID
or

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