JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://fonts.googleapis.com/css?family=Lily+Script+One"></script>
<link rel="stylesheet" href="http://fonts.googleapis.com/earlyaccess/nanumgothic.css">
<div class="block" style="margin-left:300px;margin-top:250px;width:100px;height:50px;"><a>This is a content block</a></div>
CSS
.block {
-webkit-align-content: stretch;
-webkit-align-items: stretch;
-webkit-align-self: stretch;
-webkit-animation-delay: 0s;
-webkit-animation-direction: normal;
-webkit-animation-duration: 0s;
-webkit-animation-fill-mode: none;
-webkit-animation-iteration-count: 1;
-webkit-animation-name: none;
-webkit-animation-play-state: running;
-webkit-animation-timing-function: ease;
-webkit-app-region: no-drag;
-webkit-appearance: none;
-webkit-backface-visibility: visible;
-webkit-background-clip: border-box;
-webkit-background-composite: source-over;
-webkit-background-origin: padding-box;
-webkit-background-size: auto;
-webkit-border-fit: border;
-webkit-border-horizontal-spacing: 0px;
-webkit-border-image: none;
-webkit-border-vertical-spacing: 0px;
-webkit-box-align: stretch;
-webkit-box-decoration-break: slice;
-webkit-box-direction: normal;
-webkit-box-flex: 0;
-webkit-box-flex-group: 1;
-webkit-box-lines: single;
-webkit-box-ordinal-group: 1;
-webkit-box-orient: horizontal;
-webkit-box-pack: start;
-webkit-box-reflect: none;
-webkit-box-shadow: none;
-webkit-clip-path: none;
-webkit-color-correction: default;
-webkit-column-axis: auto;
-webkit-column-break-after: auto;
-webkit-column-break-before: auto;
-webkit-column-break-inside: auto;
-webkit-column-count: auto;
-webkit-column-gap: normal;
-webkit-column-progression: normal;
-webkit-column-rule-color: rgb(255, 255, 255);
-webkit-column-rule-style: none;
-webkit-column-rule-width: 0px;
-webkit-column-span: none;
-webkit-column-width: auto;
-webkit-filter: none;
-webkit-flex-basis: auto;
-webkit-flex-direction: row;
-webkit-flex-grow: 0;
-webkit-flex-shrink: 1;
-webkit-flex-wrap: nowrap;
-webkit-flow-from: none;
-webkit-flow-into: none;
-webkit-font-kerning: auto;
-webkit-font-smoothing: auto;
-webkit-font-variant-ligatures: normal;
-webkit-grid-after: auto;
-webkit-grid-auto-columns: auto;
-webkit-grid-auto-flow: none;
-webkit-grid-auto-rows: auto;
-webkit-grid-before: auto;
-webkit-grid-columns:...
JavaScript
$('.block').hover(function() {
$(this).css('-webkit-transform-origin-x','');
$(this).css('-webkit-transform','scale(2,2)');
$(this).css('-webkit-transition','200ms 0ms');
}, function() {
$(this).css('-webkit-transform-origin-x','');
$(this).css('-webkit-transform','');
$(this).css('-webkit-transition','');
});