我想这就是你想要的:
fork
transform-origin: left;
进入
transform-origin: 0% 0%;
从您的代码片段演示中:
<html>
<body>
<!--The content below is only a placeholder and can be replaced.-->
<div style="width: 1000px; height: 800px; position: absolute; top: 100px">
<div style="position: absolute; right: 16px; z-index: 2;">
<!---something else--->
</div>
<!--- this is the scrollable outer div --->
<div
style="width:3000px; background-color:red; height: 2000px; z-index: 1; overflow: auto;"
>
<!--- I am trying to zoom this div in/out --->
<!--- sadly I cannot align it within the outer div --->
<div
style="position: absolute; transform: scale(1.2); background-color: black; width: 500px; height: 400px; transform-origin: 0% 0%;"
></div>
</div>
</div>
</body>
</html>
检查以下各项
link
transform-origin