I'm new to PhoneGap and noticed a problem... When testing my app on a desktop computer, or even if I put the app online and view it in a webpage (I'm on android and tried chrome browser and Samsung browser). It appears the same. However, if I view it with the phonegap app on my phone, the font size if different. Here's a simple example...
body {font:normal 26px arial}
div{width:200px;height:100px;border:1px solid black}
<div>THIS IS A TEST</div>
Notice, the words THIS IS A TEST fit nicely across the div. With phonegap, it doesn't fit. It's enlarging the font. I did some testing and it's not changing the div size, it's definitely a Font issue. I was hoping to have things look the same on desktop and mobile, without having to alter font sizes and detect devices. Any ideas?