html - Javascript navigation hover effect -
does know how implement navigation hover effect displayed on this web page html/css document? aforementioned page using wordpress theme, add green effect generic web page , able change color well.
p.s. have never used javascript before. (be nice.)
try this:
css
ul li{ list-style:none; } ul li a{ transition:all 0.2s ease-out; padding:5px; border-radius:5px } ul li a:hover{ background-color:#&dcc0e; }
html:
<ul> <li> <a>hello</a> </li> </ul>
Comments
Post a Comment