Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

172
Views
What means -ms-transform: rotate(deg); in css
    .a {
      width: 150px;
      height: 80px;
      background-color: yellow;
      -ms-transform: rotate(22deg); /* IE 9 */
      transform: rotate(20deg); 
    }

<!-- language: lang-html -->

    <html>
    <head>
    </head>
    <body>

    <h1>The transform Property</h1>

    <h2>transform: rotate(20deg):</h2>
    <div class="a">Hello World!</div>

    </body>
    </html>

In the css -ms-transform:rotate(20deg) cant any change in the code . But in the examples it is used to code. What is the use of that line in css

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

The transform property applies a 2D or 3D transformation to an element. This property allows you to rotate, scale, move, etc., elements. And here, the -ms-transform property is used so that your CSS can also be applied in Internet Explorer. So, if you want to see the change, then open it in Internet Explorer, and you will be able to see the change.

Exact phrase from MDN Web DOCS: Microsoft applications such as Edge and Internet Explorer support a number of special Microsoft extensions to CSS. These extensions are prefixed with -ms-.

You can study more about it here: https://developer.mozilla.org/en-US/docs/Web/CSS/Microsoft_Extensions

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!