麻烦老师看一下有没有问题
来源:3-10 编程练习
Yuujio
2021-06-15 17:51:27
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
header{
width: 100%;
display: flex;
font-size: 20px;
justify-content: space-around;
background-color: black;
}
header .nav{
width: 600px;
display: flex;
justify-content: space-around;
color: aliceblue;
}
.nav li{
display: flex;
justify-content: center;
margin: 20px;
}
.login{
width: 200px;
display: flex;
justify-content: space-around;
align-items: center;
}
.login input{
width: 50px;
height: 30px;
border: 1px solid rgb(224, 154, 24);
border-radius: 5px;
background-color: rgb(224, 154, 24);
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="http://climg.mukewang.com/59feb59700019dab01910057.png" alt="">
</div>
<ul class="nav">
<li>课程</li>
<li>路径</li>
<li>猿问</li>
<li>手记</li>
</ul>
<div class="login">
<input type="button" value="登录">
<input type="button" value="注册">
</div>
</header>
</body>
</html>
1回答
好帮手慕言
2021-06-15
同学你好,logo图片的位置往下调整一些会更好,代码参考:
祝学习愉快~
相似问题