Is it possible to do the mouse over feature in HTML?

Recommended Answers

All 5 Replies

yes
________
Less smartass reply
yes, but
_________
Less smartass reply
yes, but only appearance, functions require some scripting, usually javascript
_________
reasonable reply

Yes, but only appearance, functions require some scripting language
example

<! doctype bla bla bla>
<html>
<head>
<style type='text/css'>
a { background:red; color:white; }
a:hover { background:white; color:red; }
</style>
</head>
<body>
<a href='#'>this is an ugly link</a>
</body>
</html>

available pseudo classes depending on which element being styled are

{blank}
link
hover
active
focus
first-line
first-letter
first-child
lang
visited
detailed explanations at http://www.w3schools.com/CSS/css_pseudo_classes.asp if($w3schools) { echo 'cool'; }

I don't understand that at all. Here is the website that I am trying to do the mouse-over on.

I answered your question, if you didnt want to know the 'generic 'answer, sorry, but thats the question asked

what mouseover effect do you want to achieve

the code to the site is better, between code tags, lets those who can implement what you want, point to where it goes

likely when it gets interesting there will be many more than just me playing sillybuggers with the code

ok, thanks.

Yes you could do that. Through CSS or javascript.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.