Answers for "boostrap pointer"

CSS
0

boostrap pointer

/* Best way is just to create a new css class */
.cursor-pointer {
  cursor: pointer;
}

/* Or alternatively, add it as a html style */

<p style="cursor: pointer;">Hello World</p>
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language