Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 요소에 2D 또는 3D 변환을 적용하는 방법

<시간/>

CSS의 transform 속성을 사용하여 요소에 2D 또는 3D 변형을 적용합니다. 다음 코드를 실행하여 변형을 사용하여 요소를 회전할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 200px;
            height: 100px;
            background-color: gray;
            transform: rotate(10deg);
         }
      </style>
   </head>
   <body>
      <h1>Rotation</h1>
     <div>Demo</div>
   </body>
</html>