Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:看上去还不错
了解 FlexBox 的常用属性
属性 | 描述 |
---|---|
flex-direction: |
设置主轴方向默认水平方向:row |
flex-wrap: |
主轴上的项目是否换行默认不换行:nowrap |
flex-flow: |
flex-direction: 和flex-wrap: 的简写:flex-flow: flex-direction flex-wrap; |
justify-content: |
当主轴上存在剩余空间时,控制空间在项目上的分配方案 |
align-items: |
控制所有项目在交叉轴上的对齐方式 |
align-content: |
仅适用于多行容器,控制项目的对齐方式 |
align-self: |
控制单个项目在交叉轴上的对齐方式 |
flex-grow: |
设置项目在主轴空间上的增长因子默认为 0,不放大,作用:可控的让项目增长一定的尺寸填补剩余的空间; |
flex-shrink: |
收缩因子有效的前提是,所有项目宽度之和必须大于主轴上的当前空间大小,默认是 1 |
flex-basis: |
设置基础尺寸大小,优先级为:min-width > flex-basis > width |
flex: |
增长因子,收缩因子,基础尺寸的简写例如:flex: 0 1 auto; //默认不放大,可收缩,尺寸使用原始大小 |
布局的大致思路
PC 端布局的通用的解决方案
- 实例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PC端布局的通用的解决方案</title>
<style>
/* 初始化 */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
color: #666;
}
body {
min-width: 680px;
display: flex;
/* 主轴垂直方向,不换行 */
flex-flow: column nowrap;
}
header,
footer {
height: 50px;
border: 1px solid #000;
}
/* 将页眉转为弹性盒子 */
header {
display: flex;
/* 所有项目在交叉轴方向上垂直居中显示 */
align-items: center;
}
header > a {
/* 不放大,可收缩,尺寸100px */
flex: 0 1 100px;
/* 文本内容水平居中 */
text-align: center;
}
header > a:first-of-type {
margin-right: 50px;
}
/* 登录/注册靠右 */
header > a:last-of-type {
margin-left: auto;
}
/* 鼠标悬停时忽略logo */
header > a:hover:not(:first-of-type) {
color: coral;
}
.container {
min-height: 400px;
margin: 10px auto;
display: flex;
justify-content: center;
}
.container > aside,
.container > main {
border: 1px solid #000;
padding: 10px;
}
.container > aside {
flex: 0 0 200px;
}
.container > main {
flex: 0 0 600px;
margin: 0 10px;
}
footer {
display: flex;
/* 主轴方向列方向,不换行 */
flex-flow: column nowrap;
/* 文字水平居中 */
text-align: center;
}
</style>
</head>
<body>
<!-- 页眉 -->
<header>
<a href="">Logo</a>
<a href="">首页</a>
<a href="">栏目1</a>
<a href="">栏目2</a>
<a href="">栏目3</a>
<a href="">登录</a>
</header>
<!-- 主体 -->
<div class="container">
<aside>左边栏</aside>
<main>主体内容</main>
<aside>右边栏</aside>
</div>
<!-- 页脚 -->
<footer>
<p>
php中文网 ©版权所有 (2018-2022) | 备案号:
<a href="">皖ICP-18********</a>
</p>
<p>中国.合肥市政务新区999号 | 电话: 0551-888999**</p>
</footer>
</body>
</html>
- 效果图:
移动端的解决方案
- 实例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="static/font/iconfont.css" />
<title>移动端的解决方案</title>
<style>
/* 初始化 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
html {
/* vw: 可视区宽度,100指100份 */
/* vh: 可视区高度, 100指100份 */
width: 100vw;
height: 100vh;
}
body {
display: flex;
flex-flow: column nowrap;
}
body > header {
color: white;
background-color: #333;
height: 30px;
display: flex;
/* 垂直居中 */
align-items: center;
/* 两端对齐 */
justify-content: space-between;
/* 固定定位 */
position: fixed;
width: 100vw;
}
/* 轮播图 */
body > .slider {
height: 180px;
}
body > .slider > img {
height: 100%;
width: 100%;
}
/* 主导航区 */
nav {
height: 200px;
margin-bottom: 10px;
display: flex;
/* 转为多行容器 */
flex-flow: row wrap;
align-content: space-around;
}
nav > div {
width: 25vw;
display: flex;
/* 主轴垂直,不换行 */
flex-flow: column nowrap;
/* 垂直居中 */
align-items: center;
}
nav > div > a:first-of-type {
text-align: center;
}
nav > div img {
width: 50%;
}
/* 每个区域的标题样式 */
.title {
margin-top: 10px;
font-size: 1.2rem;
font-weight: normal;
text-align: center;
}
/* 热销商品区 */
.hot-goods {
border-top: 1px solid #cdcdcd;
margin-top: 10px;
font-size: 0.8rem;
display: flex;
/* 水平多行容器 */
flex-flow: row wrap;
}
.hot-goods img {
width: 100%;
}
.hot-goods > .goods-img {
/* 内边距并重置大小 */
padding: 10px;
box-sizing: border-box;
/* 允许放大不允许缩小,否则项目不会换行,多行容器失效 */
flex: 1 0 30vw;
/* 再将每个商品描述转为flex */
display: flex;
/* 主轴垂直且不允许换行 */
flex-flow: column nowrap;
justify-content: center;
}
/* 商品描述的最后一个区域转flex,并设置项目在主轴上排列对齐方式 */
.hot-goods > .goods-img > div {
display: flex;
/* 分散对齐 */
justify-content: space-around;
}
/* 热销样式 */
.hot {
color: coral;
}
/* 商品列表区 */
.list-goods {
padding: 10px;
border-top: 1px solid #cdcdcd;
margin-top: 10px;
font-size: 0.8rem;
display: flex;
/* 主轴必须是垂直 */
flex-flow: column nowrap;
}
/* 每个项目也转为flex */
.list-goods > .goods-desc {
margin: 10px 0;
display: flex;
}
/* 列表中每个项目的样式,加些间距 */
.list-goods > .goods-desc > a {
padding: 10px;
box-sizing: border-box;
}
.list-goods > .goods-desc > a:last-of-type:hover {
color: lightseagreen;
}
/* 图片全部适应项目空间 */
.list-goods img {
width: 100%;
}
body > footer {
color: #666;
background-color: #efefef;
border-top: 1px solid #ccc;
height: 55px;
position: fixed;
bottom: 0;
width: 100vw;
display: flex;
justify-content: space-evenly;
}
body > footer a {
margin-top: 10px;
font-size: 0.8rem;
display: flex;
/* 垂直排列不换行 */
flex-flow: column nowrap;
/* 交叉轴项目居中显示 */
align-items: center;
}
body > footer a > span:first-of-type {
/* 图标字体应该大一些 */
font-size: 1.6rem;
}
</style>
</head>
<body>
<header>
<a href="">LOGO</a> <span class="iconfont icon-icon"></span>
</header>
<!-- 轮播图 -->
<div class="slider"><img src="static/images/banner.jpg" alt="" /></div>
<!-- 主导航区 -->
<nav>
<div>
<a href=""><img src="static/images/link1.webp" alt="" /></a>
<a href="">京东超市</a>
</div>
<div>
<a href=""><img src="static/images/link2.webp" alt="" /></a>
<a href="">服装百货</a>
</div>
<div>
<a href=""><img src="static/images/link3.webp" alt="" /></a>
<a href="">数码精品</a>
</div>
<div>
<a href=""><img src="static/images/link4.webp" alt="" /></a>
<a href="">优惠劵</a>
</div>
<div>
<a href=""><img src="static/images/link1.webp" alt="" /></a>
<a href="">超市精选</a>
</div>
<div>
<a href=""><img src="static/images/link2.webp" alt="" /></a>
<a href="">服装百货</a>
</div>
<div>
<a href=""><img src="static/images/link3.webp" alt="" /></a>
<a href="">数码精品</a>
</div>
<div>
<a href=""><img src="static/images/link4.webp" alt="" /></a>
<a href="">优惠劵</a>
</div>
</nav>
<!-- 热销商品 -->
<h2>热销商品<span class="iconfont icon-huoremen"></span></h2>
<div class="hot-goods">
<div class="goods-img">
<a href=""><img src="static/images/goods1.jpg" alt="" /></a>
<p>Apple iPhone 11 128G</p>
<div>
<span>6299 元</span>
<span class="iconfont icon-gouwuche"></span>
</div>
</div>
<div class="goods-img">
<a href=""><img src="static/images/goods1.jpg" alt="" /></a>
<p>Apple iPhone X 512G</p>
<div>
<span>8299 元</span>
<span class="iconfont icon-gouwuche"></span>
</div>
</div>
<div class="goods-img">
<a href=""><img src="static/images/goods2.jpg" alt="" /></a>
<p>华为笔记本电脑</p>
<div>
<span>5699 元</span>
<span class="iconfont icon-gouwuche"></span>
</div>
</div>
<div class="goods-img">
<a href=""><img src="static/images/goods2.jpg" alt="" /></a>
<p>小米笔记本电脑</p>
<div>
<span>3999 元</span>
<span class="iconfont icon-gouwuche"></span>
</div>
</div>
<div class="goods-img">
<a href=""><img src="static/images/goods2.jpg" alt="" /></a>
<p>联想笔记本电脑</p>
<div>
<span>4399 元</span>
<span class="iconfont icon-gouwuche"></span>
</div>
</div>
</div>
<!-- 商品列表区 -->
<h2 class="title">
商品列表<span class="iconfont icon-fenlei1 hot"></span>
</h2>
<div class="list-goods">
<div class="goods-desc">
<a href=""><img src="static/images/goods4.jpg" alt="" /></a>
<a href=""
>[白条24期免息]Apple苹果iPhone 11 手机 128G 全网通, 免费领取500元话费,
今天17:00下单,明晨12:00之前送达,7天无理由退货,官方提供售后,
以上都是我瞎编的<span class="iconfont icon-yanjing"></span
></a>
</div>
<div class="goods-desc">
<a href=""><img src="static/images/goods3.jpg" alt="" /></a>
<a href=""
>[白条24期免息]Apple洗衣机,专业清洗苹果手机,
苹果电脑,iPad,洗好保证不能用, 免费领取500元保险费,
今天17:00下单,明晨12:00之前送达,7天无理由退货,官方提供售后,
以上都是我瞎编的<span class="iconfont icon-yanjing"></span
></a>
</div>
<div class="goods-desc">
<a href=""><img src="static/images/goods5.png" alt="" /></a>
<a href=""
>[白条24期免息]Apple苹果iPhone 11 手机 128G 全网通, 免费领取500元话费,
今天17:00下单,明晨12:00之前送达,7天无理由退货,官方提供售后,
以上都是我瞎编的<span class="iconfont icon-yanjing"></span
></a>
</div>
<div class="goods-desc">
<a href=""><img src="static/images/goods2.jpg" alt="" /></a>
<a href=""
>[白条24期免息]华为笔记本MateBook 14 全面屏轻薄性能笔记本电脑
十代酷睿(i5 16G 512G MX250 触控屏 多屏协同)灰, 以上都是我瞎编的<span
class="iconfont icon-yanjing"
></span
></a>
</div>
</div>
<footer>
<a href=""
><span class="iconfont icon-shouye1"></span> <span>首页</span></a
>
<a href=""
><span class="iconfont icon-fenlei"></span> <span>分类</span></a
>
<a href=""
><span class="iconfont icon-gouwuche"></span> <span>购物车</span></a
>
<a href=""
><span class="iconfont icon-weidenglu-touxiang"></span
><span>未登录</span></a
>
</footer>
</body>
</html>
- 效果图: