Re: [csswg-drafts] [css-inline] Consistent vertical positioning of large and medium-sized text across OSs

Adding a hack again in a current project 🙁
```
if (navigator.platform.startsWith("Win")) {
  var h1 = document.querySelector("h1");
  h1.style.marginTop = "-0.25em";
  h1.style.marginBottom = "0.15em";
}
```


-- 
GitHub Notification of comment by tobireif
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2228#issuecomment-374699478 using your GitHub account

Received on Tuesday, 20 March 2018 18:05:27 UTC