mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
19 lines
420 B
HTML
19 lines
420 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
|
<style>
|
|
body,html { width: 100%; height: 100%; padding: 0; }
|
|
#scale {
|
|
position: absolute;
|
|
left: 300px;
|
|
top: 300px;
|
|
-moz-transform: scale(4);
|
|
border: 1px solid #888;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="scale">Hello<div style="width:1px; height:1px; background:white;"></div></div>
|
|
</body>
|
|
</html>
|