We Recommend

HTML Dog: The Best-Practice Guide to XHTML and CSS HTML Dog: The Best-Practice Guide to XHTML and CSS
For readers who want to design Web pages that load quickly, are easy to update, accessible to all, work on all browsers and can be quickly adapted to different media, this comprehensive guide represents the best way to go about it.


Posted By

Ashung on 07/01/08


Tagged

iframe xhtml


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

gelund


IE6 iframe horizontal scrollbar


Published in: XHTML 


scrolling="yes"去除当目标文件过长IE6出现的水平滚动条,同时也使其他浏览器出现水平滚动条,style="overflow:visible;"用于去除其他浏览器的水平滚动条。

  1. <iframe src="" height="100%" width="100%" frameborder="0" scrolling="yes" style="overflow:visible;"></iframe>

Report this snippet 

You need to login to post a comment.