I have the HTML below (also in this fiddle). When I view this in Chrome on my Android device, it looks fine.
<link href="https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.0/css/foundation.min.css" rel="stylesheet" />
<h1>This is a header</h1>
<div class="row">
<div class="column">
<p>Text</p>
</div>
</div>
<div class="row">
<div class="column">
<div class="panel">
<p>Some long text.</p>
<hr />
<p>Some long text.</p>
<p>Some long text.</p>
</div>
</div>
</div>
However, when I adjust the "long text" paragraphs to actually contain a large paragraph of text (as in the snippet below, and this fiddle), then the sizing of the font in the paragraph is rendered bigger for some reason.
<link href="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.0/css/foundation.min.css" rel="stylesheet" />
<h1>This is a header</h1>
<div class="row">
<div class="column">
<p>Text</p>
</div>
</div>
<div class="row">
<div class="column">
<div class="panel">
<p>Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text.</p>
<hr />
<p>Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text.</p>
<p>Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text. Some long text.</p>
</div>
</div>
</div>
This only seems to happen in Chrome on Android (as far as I can tell). Can anyone tell me why this is happening? Is this a bug in Chrome, or have I missed something?