Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can use CSS to remove the scrollbar from an iframe by setting the overflow property to hidden. Here's an example:

<iframe src="https://example.com" style="overflow:hidden;"></iframe>

This will remove both horizontal and vertical scrollbars from the iframe. If you only want to remove one of them, you can set overflow-x or overflow-y instead.