I am trying to figure out what the default font size on Chrome Mobile is.
It's not displayed in the Chrome Mobile settings page and Googling it has proven futile. I don't have the ability to run the Chrome Remote Debugger at the moment.
I am trying to figure out what the default font size on Chrome Mobile is.
It's not displayed in the Chrome Mobile settings page and Googling it has proven futile. I don't have the ability to run the Chrome Remote Debugger at the moment.
You might run the following code to get font-size
(make sure you run it before any CSS which set font-size
to html
was applied):
alert(getComputedStyle(document.querySelector('html'))['font-size'])