<!DOCTYPE html>
<html>
<head>
<title>dafter</title>
</head>
<body>
<hr style=" margine: 20px; transform: rotatz(20deg);>
</body>
</html>这段代码是用来旋转行的,我怎样才能改变旋转中心呢?
发布于 2022-10-09 10:45:13
使用transform-origin。一些例子。
transform-origin: center;
transform-origin: top left;
transform-origin: 100px 100px;https://stackoverflow.com/questions/74004002
复制相似问题