mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
366 B
HTML
15 lines
366 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.transformed
|
|
{
|
|
-moz-transform: rotate(10deg) translatex(50px) rotate(10deg) translatey(50px) skewx(10deg) translate(25px, 25px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="width:100px; height:50px; background-color:gold; position: absolute; left:100px; top:100px;" class="transformed">
|
|
</div>
|
|
</body>
|
|
</html>
|