According to the HTML5 standard, an HTML element must not have two or more attributes with the same name. Elements that do not conform to this restriction may be interpreted differently by different browsers.

Inspect the element in question and delete all but one of the conflicting attributes.

The following HTML snippet contains an anchor element with two conflicting href attributes:

The conflict can be resolved by deleting the first attribute:

  • HTML5 Standard: 8.1.2.3 Attributes.