JSFiddle - React, Tailwind, and code Playground

HTML

This is <mark>marked text</mark>. I want to disable selecting only part of <mark>marked text</mark>.

CSS

mark {
   -khtml-user-select: all;
   -webkit-user-select: all;
   -o-user-select: all;
   user-select: all;
}