请问这样符合题目要求了吗?
来源:3-13 编程练习
慕先生2043272
2018-08-07 10:45:56
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
/*在此处补充代码*/
header{
display:flex;
width:100%;
height:100px;
background-color:#000;
justify-content: space-around;
align-items: center;
}
.nav{
color: #fff;
width: 300px;
display: flex;
justify-content: space-between;
align-content: center;
}
.login{
width: 100px;
display: flex;
justify-content: space-between;
}
</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回答
1、去掉浏览器默认的内外间距

2、去掉列表项的标记

3、设置右侧按钮的样式

希望可以帮到你!
相似问题