I am working on a preview of a particular website that I am working on in backend.
<div class="tab-pane" id="preview_site">
<iframe id="site_previewer" src="path/to/website" style="width:100%;height:600px;"></iframe>
</div>
This is the iframe. The problem is website loads in tab view and not desktop view. Using the current width available, I want to load the website in desktop view. Manipulating with the width does the job, but also the iframe goes out of the browser window. How can I do that?