I'm working on fixing a bug in Chrome and have successfully applied a style to correct it. However, when I view it in Edge, the appearance is not right. How can I target only Chrome (version 60) with my styles, without affecting other browsers?
@media (min-width: 860px) and (-webkit-min-device-pixel-ratio: 0) {
table.content tbody tr td { min-width: 90px; }
}
@media (min-width: 711px) and (max-width: 860px) and (-webkit-min-device-pixel-ratio: 0) {
table.content tbody tr td { min-width: 60px; }
}