Embedding an iframe of an appointment scheduling frontend on my page has been a challenge. While the width is correct, the height of the frame is too small. Despite attempting various CSS modifications, I have not been able to achieve the desired result. Is it possible to resolve this issue using only CSS? I have access to both servers involved in this process. The image below shows the current situation, and if the content were full height, it would be perfect.
I have scoured multiple posts on Stack Overflow and other websites for solutions without success. I have tried different methods suggested on sites like . Below is the snippet of code that I am currently working with:
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://xxx" allowfullscreen></iframe>
</div>
The goal is to make the iframe adjust its height based on the content within it. Any guidance or assistance on how to achieve this would be greatly appreciated.