Navigation buttons | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Navigation buttons

how do you create navigation button with mouseover effects

19th Jan 2017, 7:24 PM
GEOFFREY MBURU
GEOFFREY MBURU - avatar
2 Respostas
+ 11
<button onmouseover="func(this,e);" href="#top">Navigate</button>
19th Jan 2017, 7:27 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 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>
19th Jan 2017, 11:19 PM
visph
visph - avatar