A mixin to move an object off-screen but keep it's display intact. ``` @mixin off-screen { position: absolute; overflow: hidden; left: -9999px; top: -9999px; } ```