17.11 彩色滚动条.htm

来自「一些javascript的小例子希望对初学者有更好的帮助」· HTM 代码 · 共 39 行

HTM
39
字号
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<style type="text/css">
body 
 {
  scrollbar-face-color: #b5daff;
  scrollbar-highlight-color: #ffffff;
  scrollbar-shadow-color: #000000;
  scrollbar-arrow-color: #0000ff;
  scrollbar-base-color: #6699ff;
  scrollbar-dark-shadow-color: #6699ff;
 }
</style>
      
</head>
<body>
<table border="1">
	<tbody>
		<tr>
			<th>Name</th>
			<th>Sex</th>
			<th>Age</th>
		</tr>
		<tr>
			<th>lisi</th>
			<th>male</th>
			<th>23</th>
		</tr>
		<tr>
			<th>wangwu</th>
			<th>male</th>
			<th>27</th>
		</tr>
	</tbody>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?