Forum Moderators: not2easy

Message Too Old, No Replies

CSS validation has an error

         

toplisek

8:45 pm on Sep 2, 2016 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Code is the following inside CSS:
fh-switch > [type="checkbox"]:checked + label + .fh-switch-knob, .fh-switch > [type="checkbox"]:not(:checked) + label + .fh-switch-knob

1. How to solve an error:
Property pointer-events doesn't exist : none

2. How to solve an error:
Feature -webkit-min-device-pixel-ratio doesn't exist for media screen

CSS code is the following:
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 1) {
.myCLASS1 { }
}

not2easy

10:13 pm on Sep 2, 2016 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



The media query posted is not for mobile, maybe that
and (-webkit-min-device-pixel-ratio: 1)
line should be removed and that would remove your error.