# Compatibility explorer

Multi-browser style compatibility can be achieved with a single line of code

let style = useStyle({
    demo: {
        userSelect: none;
    }
})

Will output

.demo {
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

Currently supported solutions: Automatic assembly of styles - webkit -, -moz -, -o- tags based on the List table