<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.nav {
height: 41px;
border-top: 3px solid #ff8500;
border-bottom: 1px solid #edeef0;
background-color: #fcfcfc;
line-height: 41px;
}
.nav a {
font-size: 20px;
color: #4c4c4c;
text-decoration: none;
display: inline-block;
padding: 0 20px;
}
.nav a:hover {
background-color: orange;
}
.nav .denglu {
float: right;
}
.nav .zuceng {
float: right;
}
</style>
</head>
<body>
<div class="nav">
<a href="#">新浪导航</a>
<a href="#">手机新浪网</a>
<a href="#">移动客户端</a>
<a href="#">微博</a>
<span class="zuceng"><a href="#">注册</a></span>
<span class="denglu"><a href="#">登录</a></span>
</div>
</body>
</html>