WeChatMsg/wechat.html
2023-03-31 11:15:44 +08:00

55 lines
856 B
HTML

<html>
<head>
<meta charset="UTF-8">
<title>聊天时间</title>
<style>
<style type="text/css">
#nav {
height: 40px;
margin-top: 50px;
background-color: #690;
}
#nav ul {
list-style: none;
margin-left: 50px;
}
#nav li {
display: block;
float: left;
}
#nav a {
line-height: 40px;
display: block;
color: #fff;
text-decoration: none;
padding: 0 20px;
}
#nav a:hover {
background-color: #060;
}
#menu li {
float:left; /* 往左浮动 */
}
</style>
</head>
<body>
<div>
你好
</div>
<div>
<ul id="menu">
<li><a href="http://www.baidu.com">Baidu.Com</a></li>
<li><a href="http://www.Code52.Net">Code52.Net</a></li>
<li><a href="http://www.yahoo.com">Yahoo.com</a></li>
<li><a href="http://www.google.com" class="last">Google.com</a></li>
</ul>
</div>
</body>
</html>