I'm finding that borders with the same border-width setting will display at various widths on hi-dpi displays at various zoom levels (including 100% zoom). For 1px and "thin" borders, they sometimes disappear entirely. This happens with box-sizing: border-box, but not box-sizing: content-box.
I've tried this on Chrome 63.0.3239.132 and a client of mine has tried it on a Chrome Box and Chrome Book with a 27" monitor.
<input> with border: 1px solid black; box-sizing: border-box; on hi-dpi laptop monitor, 100% zoom:

<input> with border: 1px solid black; box-sizing: border-box; on 4K 27" Dell monitor, 100% zoom (notice the third input's border has disappeared):

Thanks for your time and consideration!