javascript - Hide bottom of div containing iframe via CSS -
i have iframe in html page! had set iframe height 100% , scrolling=no. framed page having lots of white space @ bottom! need remove 100px of bottom via stylesheet cannot change iframe height!
i can place iframe in div , hide bottom part of div via css.
you need place iframe in div height 100% iframe , adjust height of div according giving fixed height (iframe height -100px). need remove scroll of div using below css styles:
overflow-y:hidden; overflow-x:hidden;
Comments
Post a Comment