Rollover vs hover button

  • Thread starter Thread starter Jim Scott
  • Start date Start date
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?
 
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/
 
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.
 
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?
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

HOVER BUTTON 4
add sound hover button 3
simple button creation 1
Rollover Buttons 8
hyperlink text colour 2
hyperlink underlining 1
I am old 4
annoying screen flicker during rollovers 7

Back
Top