Answers for "use cursor-pointer to change the mouse cursor to indicate an interactive element (usually a pointing hand)."

CSS
18

css cursor pointer hover

.pointer {
  cursor: pointer;
}
Posted by: Guest on July-30-2020
0

how to change mouse pointer into cursor icon when you hover

<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 "use cursor-pointer to change the mouse cursor to indicate an interactive element (usually a pointing hand)."

Browse Popular Code Answers by Language