Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* teletrader.com - content is shifted down and right
* WebCompat issue #55217 - https://webcompat.com/issues/55217
*
* The content is shifted down and right, because they use webkit prefixes
* for scaling and redefining the origin. Firefox doesn't support
* -webkit-transform-origin-x/y
* Adding transform-origin: 0 0; to body fixes the issue
*/
body {
transform-origin: 0 0;
}