I have Iframe
embed external website to my website but my text, button and content is very large.
Image of my content:
The content's code:
<div class="row-container">
<div class="poker_content" [ngClass]="{'not-opened': iframeUrl === null}">
<iframe [src]="iframeUrl | safe" *ngIf="showIframe"></iframe>
</div>
</div>
How can I manipulate the content?
Styling the contents of an iframe is just like styling any other web page. But, you must have access to edit the page. If you can't edit the page (for example, it's on another site).
If you can edit the page, then you can add an external style sheet or styles right in the document just like you would style any other web page on your site.
Reff. - https://www.lifewire.com/iframes-and-css-3468669
Example Jquery;