ckollars / development-gotchas

A list of links that are solutions to some pesky development bugs and issues

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

development-gotchas

A list of links that are solutions to some pesky development bugs and issues

Problem: Position fixed doesn't get painted in iOS until after the scroll finishes.
Fix: Add transform: translate3d(0,0,0); or transform: translateZ(0); to the element that gets position: fixed added. Source

Responsive inline svg

  • Add preserveAspectRatio="xMinYMax" and make sure you have the viewBox dimensions. <svg preserveAspectRatio="xMinYMax" viewBox="0 0 120 37"><use xlink:href='#icon--logo'></svg>

About

A list of links that are solutions to some pesky development bugs and issues