<html>
<head id="Head1" runat="server">
<title>照片</title>
<style type="text/css">
.imageList{
overflow-x: auto;
overflow-y: hidden;
height:200px;
white-space: nowrap;
margin-left:10px;
}
img{
width:auto;
height:100%;
margin-right:10px;
}
</style>
</head>
<body>
<div class="imageList">
<img src="/Image.jpg"/>
<img src="/Image.jpg"/>
<img src="/Image.jpg"/>
<img src="/Image.jpg"/>
</div>
<script type="text/javascript"> $(window).load(function(){ $(".imageList").css("height", "" + ($(document).height() - 72) + ""); }) </script>
</body> </html>