因为只是隐藏横向滚动条,所以不能使用scrolling="no"的办法,因为这样会连纵向也隐藏了
框架包含代码
<iframe src="dayanmei.php"; width="710" height="100%" scrolling="auto" align="right" frameborder="0" >

* 今天刚找到一方法,可以完全解决隐藏横向滚动条问题,直接在页面中添加以下CSS代码就OK了:

条件是
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

html{overflow-x:hidden; overflow-y:auto;}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2021-06-28
  • 2022-12-23
  • 2022-12-23
  • 2022-02-25
  • 2021-06-21
猜你喜欢
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-14
  • 2022-02-01
相关资源
相似解决方案