Спасибо, да, все работает в Хром, но в Фаерфокс - отказывается работать. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>123</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link type="text/css" href="http://jscrollpane.kelvinluck.com/style/jquery.jscrollpane.css" rel="stylesheet" media="all" /> <style type="text/css" id="page-css"> /* Styles specific to this particular page */ .scroll-pane { width: 100%; height: 100%; overflow: auto; } body { margin:0; padding:0; } html, body, table { height: 100%; } </style> <!-- latest jQuery direct from google's CDN --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" ></script> <!-- the mousewheel plugin --> <script type="text/javascript" src="http://jscrollpane.kelvinluck.com/script/jquery.mousewheel.js" ></script> <!-- the jScrollPane script --> <script type="text/javascript" src="http://jscrollpane.kelvinluck.com/script/jquery.jscrollpane.min.js" ></script> <script type="text/javascript" id="sourcecode"> $(function(){$('.scroll-pane').jScrollPane();}); </script> </head> <body> <table style="height:100%" width="100%" border="0"> <tr> <td bgcolor="brown" height="200">123</td> </tr> <tr> <td bgcolor="green" style="position:relative;"> <div class="scroll-pane" style="position: absolute; top: 0; bottom: 0; width: 100%"> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> <p>Текст</p> </div> </td> </tr> </table> </body> </html>