【移动端网页布局】Flex 弹性布局案例 ② ( 顶部固定定位搜索栏 | 固定定位盒子居中对齐 | 二倍精灵图设置 | CSS3 中的垂直居中对齐 )
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flex 弹性布局案例</title>
<style>
body, html {
margin: 0;
padding: 0;
}
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 50px;
background-color: #333;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.container {
position: fixed;
top: 50px;
left: 0;
width: 100%;
height: 40px;
background-color: #555;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.content {
margin-top: 90px;
height: 1500px;
background-color: #f2f2f2;
}
</style>
</head>
<body>
<div class="header">顶部固定栏</div>
<div class="container">固定位置盒子</div>
<div class="content">内容区域</div>
</body>
</html>
这段代码实现了一个简单的移动端网页布局,顶部和中间固定位置的盒子使用了 position: fixed
属性,并利用 Flex 布局居中显示内容。内容区域通过设置 margin-top
避免被固定位置的盒子遮挡。这个案例简单明了,适合初学者学习和理解 Flex 布局的应用。
评论已关闭