Rollover vs hover button

J

Jim Scott

Since using 'rollover' to change text colour is frowned upon by strict html
users because it is FP specific, is using 'hover button' any more
acceptable?
 
S

Stefan B Rusynko

No
- Hoovers are JAVA and not universally supported

Just use CSS and/or JavaScript (for images)

Just Change the tag

<style fprolloverstyle>A:hover {color: #FF0000; font-family: Arial}</style>

to

<style type="text/css" >
A:hover {color: #FF0000; font-family: Arial;}
</style>



| Since using 'rollover' to change text colour is frowned upon by strict html
| users because it is FP specific, is using 'hover button' any more
| acceptable?
| --
| Jim on Tyneside UK
| Remove X to email me.
| http://freespace.virgin.net/mr.jimscott/
 
J

Jim Scott

No
- Hoovers are JAVA and not universally supported

Just use CSS and/or JavaScript (for images)

Just Change the tag

<style fprolloverstyle>A:hover {color: #FF0000; font-family: Arial}</style>

to

<style type="text/css" >
A:hover {color: #FF0000; font-family: Arial;}
</style>

Thank you.
 
K

Kevin Spencer

My question would be WHO frowns upon them? The statement is made as if it is
a universal behavior.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

Murray said:
Why are rollovers frowned on? Or do you mean using graphic images with
image swaps?
 
J

Jim Scott

My question would be WHO frowns upon them? The statement is made as if it is
a universal behavior.

I am trying to clean up my html to remove FP proprietary functions. One of
those is fprolloverstyle and that was what I was talking about. Its
replacement by type="text/css" seems simple enough so that is what I will
use instead. No big deal.
 
Top