JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<iframe src="http://google.com"></iframe>
</div>
CSS
iframe {
width: 100%;
height: 100%;
}
div {
width: 300px;
height: 200px;
}
div.hover {
width: 400px;
height: 300px;
}
JavaScript
$('div').hover(function(){
$(this).addClass('hover');
},
function(){
//$(this).removeClass('hover');
});