Adham
Adham

Reputation: 64844

How to show vertical scrollbar only for iframe?

The following html code deosn't show the vertical scrollabr . why ?

 <style>
        #mapIframe{
            min-height:300px;
            overflow:auto !important;
            direction:rtl  !important;
            overflow-x:hidden   !important;
            overflow-y:scroll   !important;
            height:100%; //optional, but it can't hurt.
        }
    </style>




<iframe id="mapIframe" src="aurl" width="300" height="800" frameBorder="0">Browser not compatible.</iframe>

Upvotes: 3

Views: 11202

Answers (1)

Bram Vanroy
Bram Vanroy

Reputation: 28437

Get rid of the scrolling="no" or change it to yes.

Upvotes: 2

Related Questions