Remove blue overlay/highlight from selected images

前端 未结 1 375
悲哀的现实
悲哀的现实 2021-01-30 10:53

I\'m making a web application with some animated clickable images and I notice (particularly in chrome but also in ff) that any slight accidental dragging over the image turns i

1条回答
  •  执念已碎
    2021-01-30 11:14

    I think, to prevent user-selection cross-browser, you could use:

    img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    }
    

    JS Fiddle demo.

    0 讨论(0)
提交回复
热议问题