47 lines
960 B
HTML
47 lines
960 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<style>
|
|
body,ul,li,p{
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
.tltle{
|
|
display: flex;
|
|
}
|
|
.tltle li{
|
|
margin-right: 10px;
|
|
}
|
|
.col{
|
|
color: red;
|
|
}
|
|
.content li{
|
|
display: none;
|
|
}
|
|
.content .active{
|
|
display: block !important;
|
|
}
|
|
</style>
|
|
<body>
|
|
<ul class="tltle">
|
|
<li class="col">公告</li>
|
|
<li>规则</li>
|
|
<li>安全</li>
|
|
<li>公益</li>
|
|
</ul>
|
|
<ul class="content">
|
|
<li class="active">公告的内容</li>
|
|
<li>规则的内容</li>
|
|
<li>安全的内容</li>
|
|
<li>公益的内容</li>
|
|
</ul>
|
|
|
|
</body>
|
|
<script src="./index.js"></script>
|
|
</html> |