0
Navigation buttons
how do you create navigation button with mouseover effects
2 odpowiedzi
+ 11
<button onmouseover="func(this,e);" href="#top">Navigate</button>
+ 2
Or with css rules and peudo-selector ':hover'...
<style>.overred:hover { background-color:red; }</style>
<a href="" class="overred">link element</a>
<div class="overred">div element: could be almost any else</a>
<button>button element as well...</button>