仿天猫头部
使用diplay:flex可以使其内部的元素弹性布局
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
<title>仿天猫头部</title>
<style>
#header {
display: flex;
width: 100%;
height: 50px;
}
.ss {
flex: 1;
}
</style>
</head>
<body>
<header id="header" class="home">
<figure class="fl ff">
<img src="fl.png" alt="分类" class="flp">
<figcaption>分 类</figcaption>
</figure>
<input type="text" class="ss" name="ss" placeholder=" 搜索双11,好货马上到手">
<figure class="fr ff">
<img src="images/sys.png" alt="扫一扫" class="frp">
<figcaption>扫一扫</figcaption>
</figure>
</header>
</body>
</html>
效果如图所示
为了让左右两边图片自动居左居右,可以让中间元素flex:1;即可。