Hi! is it possible to disable text selection in the whole project?
I’m using: user-select: none;
But it disables other kinds of interaction.
Thanks!
Hi! is it possible to disable text selection in the whole project?
I’m using: user-select: none;
But it disables other kinds of interaction.
Thanks!
Hi Juan,
Please clarify the above point so we can have a better understanding.
BR,
Thuy
Hi,
Kindly let us know when you set user-select: none;
, what other problem occurred?
The more clear you describe, the better support we can provide.
BR,
hehe, basically none other interaction “on mouse click” or “on mouse over” occurs.
In other words, there is a different option to using “user-select: none;”?
Thanks,
Hi,
Setting the CSS user-select: none;
won’t make kinds of interaction as mouse click or mouse over not occur, @juanelfranco
Maybe something was set wrong so the issue happened.
If you want to set for the whole project, you can click on Edit CSS and enter:
* {
user-select: none;
}
BR,
Thuy