Hi,   For example:   1. CustomCSS: *.unselectable {    -moz-user-select: -moz-none;    -khtml-user-select: none;    -webkit-user-select: none;    -ms-user-select: none;    user-select: none; } 2. FLbl := TUniLabel.Create(Self);   FLbl.Parent := Self;   FLbl.Font.Size := 20;   FLbl.Left := 10;   FLbl.Text := 'Hello There';   FLbl.JSInterface.JSCall('addCls', ['unselectable']); //<--------- Best regards,