I have a webpage created in html, css and some js. It's relatively simple, just the info page. All fonts appear smaller for this page, only in Chrome and only on a display with 2560x1600px. On same display, IE and Firefox for example show this properly.
For example, we can take a paragraph element in consideration.
<p>Some text</p>
It's not defined in my css files. It has:
display: block;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
Defined in user agent stylesheet.
And it's parent has:
.fpcell .content {
font-size: 160%;
color: #606060;
font-weight: 300;
}
All fonts-sizes are defined in %. I don't have fixed font-size anywhere on the page, defined in let's say px (all elements should take font-size in % in regards to 16px).
I tried to set fixed font-size: 16px; on body, so this 160% would be taken from there, but no luck. I tried to set fixed font-size for this div (the parent) and for this paragraph in px, but also no luck.
I can't replicate the issue, I tried all kind of emulators for big displays (mine is 1920x1080), including Google devTools - it still looks ok, but on a physical display with 2560x1600 it does look smaller. I also tried some other things, but no luck. The css is reset.
Main issue is, not being able to replicate the error on my local machine.