Sometimes it might be handy when you have text that could be selected and copied by the user to prevent certain elements from being copied.
I've realized that we can simply do that by using the CSS property user-select: none:
span {
user-select: none;
}