mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
19 lines
345 B
HTML
19 lines
345 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
background: red;
|
|
margin-left: 100.5px;
|
|
height: 100px;
|
|
width: 100px;
|
|
-moz-transform-origin: bottom left;
|
|
-moz-transform: rotate(-90deg) translate(-100px, 0);
|
|
transform-origin: bottom left;
|
|
transform: rotate(-90deg) translate(-100px, 0);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</html>
|