Hover None Css Code Example


Example 1: remove hover effect css


.noHover{
pointer-events: none;
}

Example 2: css hover to disable


.noHover{
pointer-events: none;
}

Example 3: remove hover effect css


<a href='' class='btn noHover'>You cant touch ME :P</a>

Example 4: css disabled hover none


button:hover:enabled{
/*your styles*/
}
button:active:enabled{
/*your styles*/
}

Example 5: display none after hover


$('.info').hover(function() {
$(this).fadeTo(1,1);
},function() {
$(this).fadeTo(1,0);
});

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable