Answers for "css change cursor to hand on hover"

CSS
0

css hover mouse hand

<style>
    li{
        cursor: pointer;
    }
</style>
Posted by: Guest on July-21-2021
0

how to change mouse into hand icon when you hover over something in html

<style type="text/css">
	button.btn1:hover{
cursor: pointer;
	}
</style>
<button class="btn1" >hover me</button>
Posted by: Guest on June-23-2021

Code answers related to "css change cursor to hand on hover"

Browse Popular Code Answers by Language