CSS Transform Translate

  • Post category:CSS

Get the code of CSS Transform Translate and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<div>Original</div>
<div id="mydiv">Transformed</div>
div {
  background: yellow;
  padding: 5px;
  margin: 5px;
  width: 100px;
  height: 50px;
}
#mydiv {
  transform: translate(50px,20px)
}