In my application I am setting:
html {
font-family: 'Source Sans Pro',"Helvetica Neue",sans-serif;
}
I set border width to 0.1rem and now I noticed that in Chrome this sets the width to 1.6px and in Safari it sets it to 1px.
The text in Safari and Chrome appears the same size so why does the width of the lines render differently?
I saw on some web sites the setting font-size: 100%. As a good practice should I be setting this?
One more question. Is it a bad practice for me to set my border widths with rem in this way? I was using rem as everything in the application uses rem and I wanted to keep things the same.