单击Firefox后图像上的蓝色

lir*_*ron 2 css firefox jquery html5

每当我单击旋转木马上的图像时,它就会变成蓝色。我该怎么做才能取消呢?发生在此页面上的Firefox:

http://michel.richkid.co.il/he/company/gallery/main/

小智 5

这是因为用户能够选择图像并被突出显示。

要禁用此功能(或在类而不是img上):

img {
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
Run Code Online (Sandbox Code Playgroud)