Syntax error Matrix Transform in another direction with CSS

Matrix Transform in another direction with CSS



You can try to run the following code to matrix transform in another direction with CSS:

Example

Live Demo

<html>
   <head>
      <style>
         div {
            width: 300px;
            height: 100px;
            background-color: pink;
            border: 1px solid black;
         }
         div#myDiv2 {
            /* IE 9 */
            -ms-transform: matrix(1, 0, 0.5, 1, 150, 0);
            /* Safari */
            -webkit-transform: matrix(1, 0, 0.5, 1, 150, 0);
            /* Standard syntax */
            transform: matrix(1, 0, 0.5, 1, 150, 0);
         }
      </style>
   </head>
   <body>
      <div>
         Tutorialspoint.com
      </div>
      <div id = "myDiv2">
         Tutorialspoint.com
      </div>
   </body>
</html>

Output

Updated on: 2020-06-20T14:36:17+05:30

85 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements