mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
242 B
HTML
18 lines
242 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
body { margin: 0px; }
|
||
|
#test {
|
||
|
background: green;
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
-moz-transform: scale(0.5, 0.5);
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="test">
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|