mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
275 B
HTML
16 lines
275 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#thediv {
|
|
position: absolute; left: 0; top: 100%;
|
|
-moz-transform: rotate(-90deg);
|
|
-moz-transform-origin: 0 0;
|
|
background: blue 0 0 fixed repeat; width: 200px; height: 200px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="thediv"></div>
|
|
</body>
|
|
</html>
|