JSFiddle - React, Tailwind, and code Playground
by valk
HTML
<div class='cls1'>
<div class='cls2'>
<iframe src="https://seekingalpha.com"></iframe>
</div>
</div>
CSS
.cls1 {
width: 600px;
display: block;
text-align: center;
background: blue;
}
.cls2 {
display: inline-block;
text-align: center;
background: orange;
}
iframe {
width: 200px;
height: 50px;
}