mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
17 lines
240 B
HTML
17 lines
240 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
height: 200px;
|
|
width: 200px;
|
|
background: green;
|
|
-moz-transform: translate(500px, 500px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
</div>
|
|
</body>
|
|
</html>
|