How do you override “-moz-user-select: none;” on a child element?
问题 The question CSS rule to disable text selection highlighting shows how to prevent text selection on an element. Once you have prevented selection, how can you then allow selection for a specific child element? For example, <div class="no-select"> <p>some text that cannot be selected</p> <p class="select">some text that can be selected</p> <p>some text that cannot be selected</p> </div> table.no-select { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz