JSFiddle - React, Tailwind, and code Playground

HTML

<button>Welcome</button>

CSS

button{
    -webkit-transform: scale( 3 );
    margin:100px;
}

JavaScript

setTimeout( function() {
    alert( $('button').outerHeight() + 'px' );
    alert( $('button').css('height')   );
}, 3000);