Here's what I had in mind:
HTML Code:
<html>
<head>
<title>Hor Scroll demo</title>
</head>
<body>
<iframe src="external.htm" width="600" height="300" scrolling="auto" frameborder="0"></iframe>
</body>
</html>
and for the contained page:
HTML Code:
<html>
<head>
<title>External Content</title>
</head>
<style type="text/css">
body {
scrollbar-face-color: #000000;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: silver;
scrollbar-darkshadow-color: gray;
scrollbar-shadow-color: gray;
scrollbar-arrow-color: #ffffff;
scrollbar-track-color: #dfdfdf;
}
</style>
<body>
<table>
<tr>
<td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td><td><img src="../thumb2/dumb.jpg" width="140" height="225"></td>
</tr>
</table>
</body>
</html>
I didn't need to set width and height for the contained page, as the images' height and width do this for me in this example.
Bookmarks