0

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.

Gary Kupczak
  • 77
  • 1
  • 2
  • 8

2 Answers2

1

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'])
Kosh
  • 16,966
  • 2
  • 19
  • 34
1

Chrome Mobile's default font size is 16px.

Verified via remote debugging.

Gary Kupczak
  • 77
  • 1
  • 2
  • 8