Is it possible to embed a link to a website in WordPress that is responsive to different devices, such as desktops and phones with varying screen sizes? On desktops, it looks fine, but on phones, it gets cut off and does not adjust accordingly.
Using padding-bottom doesn't seem like a good solution either, as it creates a lot of white space on desktops.
.iframe-edm {
overflow: hidden;
position: relative;
}
.iframe-edm iframe {
border: 0 ;
height: 100% ;
left: 0 ;
position: absolute ;
top: 0 ;
width: 100% ;}
<div class="iframe-edm"><iframe src="https://abc/index.php/edm?src=mci"
marginwidth="0" marginheight="0" scrolling="no">
</iframe>
</div>