I have an iframe on a page with another page inside it. I want to hide the scrollbar but i can't find any solution for this.
I have tried with overflow: hidden; but it's not working.
See Below Code:
    <iframe frameborder="0" src="https://google.com/"></iframe>
CSS Code:
   iframe{
      overflow: hidden;
    }     
 
     
     
     
    