If I have a div with a few child elements and it's being css transform scaled. I've got one child element which I don't want to scale
#parent{
    -webkit-transform: scale(.5);
}
 
span:last-child{
    -webkit-transform: Something to ignore the parent scale;
}<div id="parent">
    <span>Child 1</span>
    <span>Child 2</span>
    <span>Child 3 (Don't Scale Me)</span>
</div>Can this be done with css only? Without changing the html or using js.
 
     
     
     
    