Iframes stuff

by Annie Lagang

HTML

<!--<iframe src="http://microsoft.com" class="restricted" scrolling="no"></iframe>-->
<iframe src="http://microsoft.com" class="restricted"></iframe>

CSS

/*.restricted{
    width:200px; 
    height:200px; 
    overflow-y: hidden; 
    -ms-overflow-y: hidden;
}*/
.restricted{
    width:200px; 
    height:200px;
    overflow-y: hidden;
    overflow-x: auto;
}