移動せずにスクロールすると、画面の下部に固定位置の div があります。ただし、Safari では、この div は完全に配置されているように機能し、残りのコンテンツと共に上下に移動します。[Inspect Element] をクリックすると、視覚的な (実際の?) 位置ではなく、プログラムされた (目的の) 位置が強調表示されます。
この問題をフィドルで再現することはできません。これは、Chrome、FF、または IE (10+) では発生しません。
Here's a screenshot of the difference between the visual (the character count box) and the programmed location (the highlighted area).

There are more actual layers of css and html on top of these, but here's the immediate code:
html simplified
<article class="parent">
<article class="inner-wrapper">
<div id="counter">
Character Count: <span class="tally">*javascript calculation*</span>
</div>
</article>
</article>
scss
article.parent {
max-width: rem(640);
margin: 0 auto rem(30) auto;
padding: 0 rem(10);
#counter {
position: fixed;
border: #888 solid 1px;
bottom: 130px;
left: 10px;
border-radius: 5px;
padding: 10px;
background: rgba(255, 255, 255, .8);
font-size: .8em;
min-width: 150px;
}
}
How can I make this div behave in Safari, so that the visual sits on top of the programmed location?