div { -moz-transform: scale(2); -webkit-transform: scale(2); -o-transform: scale(2); -ms-transform: scale(2); transform: scale(2); transform-origin: 0 0; } 
 <div> <p>Example</p> </div> 

How to cancel the transformation of the p tag, the p tag is necessarily nested in the div for which the transformation is performed

    1 answer 1

    Rotate the reverse transform for children?

     div p { -moz-transform: scale(0.5); -webkit-transform: scale(0.5); -o-transform: scale(0.5); -ms-transform: scale(0.5); transform: scale(0.5); transform-origin: 0 0; } 
    • the question is how to calculate if the first coefficient is 1.3, that is, what is the formula? - ruslik
    • one
      the reverse number, that is, 1 / 1.3 - Vadim Ovchinnikov