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.