目标:写出上面的内容
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
li{
list-style: none;
}
a{
text-decoration: none;
}
input{
outline: none
}
.container{
width: 1226px;
margin: 0 auto;
position:relative;
}
.head{
display: flex;
justify-content: space-between;
align-items: center;
}
.head .mid ul{
display:flex;
}
.head .mid ul li{
margin-right: 30px;
}
.head .mid ul a{
color: #757575;
}
.head .mid ul a:hover{
color: orange;
}
.head .right{
position: relative;
}
.head .right input{
width: 245px;
height: 40px;
border: 1px solid #757575;
border-radius: 5px;
}
.head .right button{
display: inline-block;
width: 52px;
height: 40px;
position: absolute;
right: 0;
}
.banner{
position: relative;
margin-top: 20px;
}
.nav{
position: absolute;
top: 0;
left: 0;
}
.nav ul{
background-color: rgba(105,101,101,.6);
width: 234px;
height: 460px;
font: 18px/1.5 Helvetica Neue,Helvetica,Arial,Mi;
padding: 20px 0px;
}
.nav ul li{
display: flex;
justify-content: space-between;
padding: 0px,30px;
}
.nav ul li a {
display: inline-block;
width: 234px;
height: 42px;
line-height: 42px;
color: aliceblue;
}
.nav ul li:hover{
background-color: orange;
}
.banner i{
display: inline-block;
width: 41px;
height: 69px;
font-size: 30px;
}
.a{
position: absolute;
top: 50%;
margin-top: -33.5px;
left: 240px;
}
.b{
position: absolute;
top: 50%;
margin-top: -33.5px;
right: 0;
}
.banner .circle{
width: 200px;
position: absolute;
right: 15px;
bottom: 15px;
}
.banner .circle span{
display: inline-block;
width: 10px;
height: 10px;
background-color: pink;
border-radius: 50%;
}
.tupian2{
position:absolute;
left:250px;
height: 480px;
width: 900px;
}
</style>
</head>
<body>
<div class="haeder">
<div class="container head">
<div class="left"><img src="../图片/小米图标2.jpg " width="56px" height="56px"></div>
<div class="mid">
<ul>
<li><a href="#">Xiaomi手机</a></li>
<li><a href="#">Redmi手机</a></li>
<li><a href="#">电视</a></li>
<li><a href="#">笔记本</a></li>
<li><a href="#">平板</a></li>
<li><a href="#">家电</a></li>
<li><a href="#">路由器</a></li>
<li><a href="#">服务中心</a></li>
<li><a href="#">社区</a></li>
</ul>
</div>
<div class="right">
<input type="text"placeholder="请输入搜索关键词" >
<button type="submit">搜索</button>
</div>
</div>
</div>
<div class="banner container">
<img src="../图片/小米.PNG" class="tupian2">
<div class="nav">
<ul>
<li>
<a href="#">
电器商品
</a>
<span>></span>
</li>
<li>
<a href="#">
电器商品
</a>
<span>></span>
</li>
<li>
<a href="#">
电器商品
</a>
<span>></span>
</li>
<li>
<a href="#">
电器商品
</a>
<span>></span>
</li>
<li>
<a href="#">
电器商品
</a>
<span>></span>
</li>
</li>
</ul>
</div>
</div>
</body>
</html>
结果