-2

I have issue . I create pretty button but If I hover it , I can mark that text like on the photo? How I can fix that?

(im newbie).

Thanks

[My button1

1 Answers1

0

.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
<p>You should be able to select this text.</p>
<Button class="unselectable">Hey, you can't select this text!</Button>
Lovepreet Singh
  • 128
  • 2
  • 13