CSS Browser target

Targeting browsers to style with CSS:

@supports (-ms-ime-align: auto) {
  /* Microsoft EdgeV13&14 CSS styles go here */
  .edge1314 {
    background: green;
  }
  .edge1314::before {
    content: "Active: ";
  }
}
@supports (-ms-accelerator: true) {
  /* Microsoft EdgeV13 CSS styles go here */
  .edge13 {
    background: green;
  }
  .edge13::before {
    content: "Active: ";
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10 & IE11 CSS styles go here */
  .ie1011 {
    background: green;
  }
  .ie1011::before {
    content: "Active: ";
  }
}