醬紫應該ok了
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>頁碼的制作</title>
<style>
.page a{
? ? display:inline-block;
? ? border:1px solid #E8E8E8;
? ? text-decoration:none;
? ? margin:3px;
? ? padding:3px 10px;
}
.page a:link,.page a:visited{
? ? color:black;
}
.page a:hover,.page a:active{
? ? background:red;
? ? color:white;
}
</style>
</head>
<body>
<div class="page">
? ? <a href="#">首頁</a>
? ? <a href="#"><</a>
? ? <a href="#">1</a>
? ? <a href="#">2</a>
? ? <a href="#">3</a>
? ? <a href="#">...</a>
? ? <a href="#">></a>
? ? <a href="#">末頁</a>
</div>
</body>
</html>