0

Is there list of styles that browsers use as their own interpretation of css. By example IE10 puts a extra remove button in the input of a form and firefox adds a dotted line to links.

input::-ms-clear { //Remove IE10's “clear field” X button
  display: none;
}
input::-moz-focus-inner { //Removing The Dotted Outline FireFox
  border: 0; 
}

Considering I do not know which browsers ussing by different css I wonder if here is a list or a rest.css.

user1073323
  • 163
  • 3
  • 14

1 Answers1

0

Vendor prefixes (Such as -ms-, -moz-, -webkit-, etc.) simply aren't valid code. Since they're not part of the W3C spec, they fail validation. They work in the browser(s) they're intended for, and fail without affecting other CSS properties in other browsers.

Mooseman
  • 18,763
  • 14
  • 70
  • 93