Html 横向滚动栏 - 诸葛二牛

时间:2024-02-25 12:32:53

Html 横向滚动栏

2010-01-28 15:13  诸葛二牛  阅读(797)  评论(0编辑  收藏  举报

通常要控制页面显示在固定的空间内,我们选择用滚动栏的方式来拓展空间。

横向的滚动栏。

本文中总结了在Html中设置横向的滚动栏的代码,供大家参考。

代码
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>html页面内加横向滚动条</title>
</head>

<body>
<DIV  style=" OVERFLOW-X: scroll; scrollbar-face-color:#B3DDF7;scrollbar-shadow-color:#B3DDF7;scrollbar-highlight-color:#B3DDF7;scrollbar-3dlight-color:#EBEBE4;scrollbar-darkshadow-color:#EBEBE4;scrollbar-track-color:#F4F4F0;scrollbar-arrow-color:#000000; width:752px;HEIGHT: 380px" align=center>
<table width="1440" border="0" cellspacing="0" cellpadding="0">
  
<tr>
    
<td>p</td>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
  
</tr>
  
<tr>
    
<td>&nbsp;</td>
    
<td>pppppppppppppppppp</td>
    
<td>ppppppppppppp</td>
    
<td>ppppppppppppppppppp</td>
    
<td>ppppppppppppppppppppppppppppppp</td>
  
</tr>
  
<tr>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
    
<td>&nbsp;</td>
  
</tr>
</table>

</div>
</body>
</html>