老师,这样写对吗?
来源:3-10 编程练习
慕尘埃191116
2021-02-07 13:49:35
<!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>
<style>
*{
padding: 0;
margin: 0;
font-size:18px;
color: #fff;
}
header,.nav,.login{
display:flex;
}
header {
height: 70px;
background: #000;
justify-content: space-around;
align-items: center;
}
.nav {
justify-content:space-between;
width: 580px;
list-style:none;
}
.login{
width: 140px;
justify-content:space-between;
}
.login input{
width: 50px;
height: 30px;
border-radius:8px;
background:orange;
outline:none;
border:none;
}
</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-02-07
同学你好,代码是对的,继续加油,祝学习愉快~
相似问题