transform

유석현(SeokHyun Yu)·2022년 11월 15일
0

CSS

목록 보기
30/32
post-thumbnail
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      h1 {
        background-color: deepskyblue;
        display: inline-block;
        padding: 5px;
        font-size: 3rem;
        margin: 100px;
        transform: scaleX(0.5) scaleY(0.5) rotate(45deg);
      }
    </style>
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>

profile
Backend Engineer

0개의 댓글