محتوى الدورة
Learn CSS In Arabic 2021
وصف الدرس

ال Code الموجود في الدرس

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>CSS</title>
    <link rel="stylesheet" href="css/master.css" />
  </head>
  <body>
    <div class="shape">
      <div>Transform</div>
    </div>
  </body>
</html>
.shape {
  perspective: 300px;
  perspective-origin: center center;
}
.shape div {
  margin: 200px auto;
  width: 200px;
  height: 200px;
  background-color: rgb(255 0 0 / 39%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 30px;
  transform: translate(100px, -100px);
  transform: translateX(100px);
  transform: translateZ(100px);
  transform: translate3d(0, 0, 100px);
}