Make SVG Text unselectable

You could disable pointer-events if you don’t need any interaction:

The pointer-events attribute allows authors to control whether or when an element may be the target of a mouse event. This attribute is used to specify under which circumstance (if any) a mouse event should go “through” an element and target whatever is “underneath” that element instead.

https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/pointer-events

.svgText {
    pointer-events: none;
}

Leave a Comment

tech