CSS3 2D轉(zhuǎn)換 1.移動(dòng)translate()
提問人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-19
使用translate()方法可以根據(jù)左(X軸)和頂部(Y軸)位置給定的參數(shù),從當(dāng)前元素位置移動(dòng),
通過一個(gè)實(shí)例來了解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>
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>