麻烦老师批改一下
来源:3-10 编程练习
weixin_慕斯卡1279472
2021-03-13 21:37:26
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
padding: 0;
margin: 0;
}
header{
display: flex;
justify-content: space-around;
align-items: center;
background: black;
}
ul{
display: flex;
justify-content: space-around;
width: 300px;
}
ul>li{
color: white;
list-style: none;
float: left;
}
input[type='button']{
background-color: orange;
color: white;
}
</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-03-14
同学你好,按钮的样式不太好看:
建议去掉默认边框、添加圆角,调整按钮之间的间距,调整文字与按钮左右两侧的距离:
祝学习愉快!
相似问题