Home  >  Article  >  Web Front-end  >  Rotate y-axis tilted div using CSS

Rotate y-axis tilted div using CSS

PHPz
PHPzforward
2023-09-21 20:01:07825browse

使用 CSS 旋转 y 轴倾斜的 div

You can try running the following code to use CSS to tilt-rotate the div along the y-axis -

Example

Demo

<html>
   <head>
      <style>
         div {
             width: 300px;
             height: 100px;
             background-color: pink;
             border: 1px solid black;
          }
          div#skewDiv {
             /* IE 9 */
             -ms-transform: skewY(20deg);
             /* Safari */
             -webkit-transform: skewY(20deg);
             /* Standard syntax */
             transform: skewY(20deg);
          }
      </style>
   </head>
   <body>
      <div>
         Welcome to my website.
      </div>
      <div id = "skewDiv">
         Welcome to my website.
      </div>
   </body>
</html>

The above is the detailed content of Rotate y-axis tilted div using CSS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete