CSS3 2D转换 1.移动translate()
提问人:刘团圆发布时间:2020-11-19
使用translate()方法可以根据左(X轴)和顶部(Y轴)位置给定的参数,从当前元素位置移动,
通过一个实例来了解translate。方法。
【例题】使用translate()方法
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width: 200px;
height: 200px;
background: blue;
transform: translate(50px,50px);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>