I am trying to embed two websites onto my website. My goal is to display these websites next to one another in a custom sized iframe while being responsive to the view port size. I am utilizing Bootstrap 4's column and row functions to try and accomplish this. However, the spacing between the columns is too large:
Note this is a previously asked question and I have looked at the Seen Forum A and SeenForumB however neither have been any good at solving my problem.
code:
<div class="col-auto mb-3">
<div class="card" style="border: none;">
<div class="card-body">
<div class="card container-fluid justify-content-center" style="margin-top: 80px; min-width: 44vw; border: 0;">
<div class="card-header" style="background-color: #3c525d; color: white; width: 100%;">
<b>EXAMPLE WEBSITE
<span style="float: right; font-size: 20px;">
<a style="color: white;" href="https://getbootstrap.com/docs/4.0/getting-started/introduction/">
<i class="fas fa-expand"></i>
</a>
</span>
</b>
</div>
<div class="card-body" style="padding: 0;">
<iframe src="https://getbootstrap.com/docs/4.0/getting-started/introduction/" style="width: 100%; height: 600px; border: none;"></iframe>
</div>
</div>
</div>
</div>
</div>
```