Skip to content

Instantly share code, notes, and snippets.

@yohanboniface
Created August 8, 2012 22:34
Show Gist options
  • Save yohanboniface/3299457 to your computer and use it in GitHub Desktop.
Save yohanboniface/3299457 to your computer and use it in GitHub Desktop.
Test case for moz-transform strange behaviour in Firefox
<html>
<head>
<title>Test case for moz-transform strange behaviour</title>
<style type="text/css">
#container {
-moz-transform: translate(529px, 258px);
}
</style>
</head>
<body>
<div id="container">
<form action="#">
<input type="text" name="myinput" value="" />
<select name="myselect">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment