Currently, I am facing an issue with the vertical scrollbar on an iframe. I want to remove it so that the scrollbar appears on the main page instead. This way, I will be able to scroll the content of the iframe using the page's scrollbar. I managed to hide the vertical scrollbar from the iframe, but now I cannot see it at all. Here is the code snippet I used:
iframe::-webkit-scrollbar {
display: none;
}
Although this solution works on Google Chrome, it does not work on Firefox and Internet Explorer. I have tried various alternatives such as:
iframe::-moz-scrollbar {display:none;}
iframe::-o-scrollbar {display:none;}
iframe::-google-ms-scrollbar {display:none;}
iframe::-khtml-scrollbar {display:none;}
Unfortunately, none of them have been successful.
I am seeking assistance in hiding the scrollbar from the iframe across all browsers and ensuring that I can still scroll the iframe's content using the page's scrollbar. Thank you for your help.