我的代码是否正确?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>2-2编程练习</title>
<style type="text/css">
*{
margin: 0;
padding:0;
}
/*此处写代码*/
.header{
width: 100%;
height: 100px;
}
.header .logo img{
width: 200px;
height: 80px;
margin-left: 100px;
margin-top: 10px;
float: left;
}
.header .nav{
height: 100px;
float: right;
}
.header .nav ul{
margin-right: 100px;
}
.header .nav ul li{
float: left;
list-style: none;
width: 80px;
font-family: "微软雅黑";
font-size: 15px;
font-weight: bold;
line-height: 100px;
text-align: center;
}
</style>
</head>
<body>
<!-- 头部 -->
<div class="header">
<div class="logo">
<img src="http://img1.sycdn.imooc.com/climg//595dd5120001736902000080.png">
</div>
<div class="nav">
<ul>
<li>前端</li>
<li>后端</li>
<li>移动端</li>
<li>数据库</li>
</ul>
</div>
</div>
</body>
</html>
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星