23maverick23
1/3/2015 - 1:41 PM

CSS: Disable text selection in SVG elements

CSS: Disable text selection in SVG elements

svg text {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
svg text::selection {
    background: none;
}