detect non touch devices
This media query let's you target non touch devices. Check browser support before implementing.
<style>
@media (hover: hover) {
.no-touch { /* ... */ }
.hover-dropdown { /* ... */ }
}
</style>
copy