<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>小说网</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #333;
color: white;
}
header a {
color: white;
text-decoration: none;
margin: 0 10px;
}
nav {
background-color: #444;
padding: 10px 20px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 10px;
}
nav .dropdown {
position: relative;
display: inline-block;
}
nav .dropdown-content {
display: none;
position: absolute;
background-color: #555;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1; /* 添加 z-index 属性 */
}
nav .dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
nav .dropdown:hover .dropdown-content {
display: block;
}
.novel-rankings {
margin: 20px;
}
.novel-rankings table {
width: 100%;
border-collapse: collapse;
}
.novel-rankings th, .novel-rankings td {
border: 1px solid #ccc;
padding: 8px;
text-align: center;
position: relative; /* 让更多链接相对定位 */
}
.novel-rankings th {
background-color: #666;
color: white;
}
.more-link {
text-align: center;
position: absolute;
bottom: 10px; /* 调整位置 */
right: 20px; /* 调整位置 */
}
.more-link a {
text-decoration: none;
color: #1e90ff;
}
</style>
</head>
<body>
<header>
<div><a href="#"><img src="logo.png" alt="小说网"></a></div>
<input type="text" placeholder="搜索">
<div>
<a href="#">注册</a>/
<a href="#">登录</a>
</div>
</header>
<nav>
<a href="index.html">首页</a>
<div class="dropdown">
<a href="#">排行</a>
<div class="dropdown-content">
<a href="#">小说排行</a>
<a href="#">作家排行</a>
</div>
</div>
<a href="#">分类</a>
</nav>
<div class="novel-rankings">
<table>
<tr>
<th>阅读榜 <div class="more-link"><a href="#">更多</a></div></th>
<th>推荐榜 <div class="more-link"><a href="#">更多</a></div></th>
<th>更新榜 <div class="more-link"><a href="#">更多</a></div></th>
</tr>
<tr>
<td><a href="#">小说1</a></td>
<td><a href="#">小说1</a></td>
<td><a href="#">小说1</a></td>
</tr>
<tr>
<td><a href="#">小说2</a></td>
<td><a href="#">小说2</a></td>
<td><a href="#">小说2</a></td>
</tr>
<tr>
<td><a href="#">小说3</a></td>
<td><a href="#">小说3</a></td>
<td><a href="#">小说3</a></td>
</tr>
<tr>
<td><a href="#">小说4</a></td>
<td><a href="#">小说4</a></td>
<td><a href="#">小说4</a></td>
</tr>
<tr>
<td><a href="#">小说5</a></td>
<td><a href="#">小说5</a></td>
<td><a href="#">小说5</a></td>
</tr>
</table>
</div>
</body>
</html>
版权属于:
3440655380
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)