- 你好,请登录
- 免费注册
- 我的订单
- 我的京东
- 京东会员
- 企业采购
- 客户服务
- 网站导航
- 手机京东
尚硅谷css3:https://www.bilibili.com/video/BV1XJ411X7Ud
MDN:https://developer.mozilla.org/zh-CN/
CSS3参考手册:http://caibaojian.com/
选择器游戏:http://flukeout.github.io/#
在HTML中有些时候,我们不能直接书写一些特殊符号
比如:多个连续的空格,比如字母两侧的大于和小于号
空格
> 大于号
< 小于号
© 版权符号
charset
指定网页的字符集name
指定的数据的名称content
指定的数据的内容keywords
表示网站的关键字,可以同时指定多个关键字,关键字间使用,隔开 <meta name="Keywords" content="网上购物,网上商城,手机,笔记本,电脑,MP3,CD,VCD,DV,相机,数码,配件,手表,存储卡,京东">
description
用于指定网站的描述<meta name="description" content="京东JD.COM-专业的综合网上购物商城,销售家电、数码通讯、电脑、家居百货、服装服饰、母婴、图书、食品等数万个品牌优质商品.便捷、诚信的服务,为您提供愉悦的网上购物体验!">
网站的描述会显示在搜索引擎的搜索的结果中
title
标签的内容会作为搜索结果的超链接上的文字显示块元素(block element)
<link href="../css/main.css" />
<div style="height: 200px;">2333div>
<style>
div{
border: aqua solid 2px;
}
style>
MDN官方文档:https://developer.mozilla.org/zh-CN/docs/Learn/CSS/First_steps/How_CSS_is_structured
div{
border: aqua solid 2px;
}
.demo01{
border: aqua solid 0.3125rem;
}
#demo01{
border: aqua solid 0.3125rem;
}
官方文档https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors
/* 选择有type属性的元素 */
[type] {
color: #00FFFF;
}
/* 选择type属性是hello的元素 */
[type="hello"] {
color: cornflowerblue;
}
/* 选择title属性包含hello的元素 */
[title*="hello"] {
color: cornflowerblue;
}
/* 选择title属性是hello开头的元素 */
[title^="hello"] {
color: cornflowerblue;
}
/* 选择title属性是hello结尾的元素 */
[title$="hello"] {
color: cornflowerblue;
}
举例
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>Documenttitle>
<style>
/*
[属性名] 选择含有指定属性的元素
[属性名=属性值] 选择含有指定属性和属性值的元素
[属性名^=属性值] 选择属性值以指定值开头的元素
[属性名$=属性值] 选择属性值以指定值结尾的元素
[属性名*=属性值] 选择属性值中含有某值的元素的元素
*/
/* p[title]{ */
/* p[title=abc]{ */
/* p[title^=abc]{ */
/* p[title$=abc]{ */
p[title*=e]{
color: orange;
}
style>
head>
<body>
<p title="abc">少小离家老大回p>
<p title="abcdef">乡音无改鬓毛衰p>
<p title="helloabc">儿童相见不相识p>
<p>笑问客从何处来p>
<p>秋水共长天一色p>
<p>落霞与孤鹜齐飞p>
body>
html>
*{
color: #00FFFF;
}
选中既是div又class为red的元素
div.red{
color: royalblue;
}
作用:同时选择多个选择器对应的元素
语法:选择器1,选择器2,选择器3,选择器n{}
span,a{
color: skyblue;
}
直接被父元素包含的元素是子元素
选择div中span子元素
div > span {
color: slateblue;
}
直接或间接被祖先元素包含的元素叫做后代元素
子元素也是后代元素
div span{
color: steelblue;
}
拥有相同父元素的元素是兄弟元素
选择下一个兄弟
我;是;div
我;是;p元;素;
我;是;p元;素;中;span元;素;
我;是;span元;素;
我;是;span元;素;
我;是;span元;素;
p + span{
color: tan;
}
选择所有兄弟
p ~ span{
ccolor: tan;
}
https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-classes
伪类(不存在的类,特殊的类)
- 伪类用来描述一个元素的特殊状态
比如:第一个子元素、被点击的元素、鼠标移入的元素...
- 伪类一般情况下都是使用`:`开头
`:first-child` 第一个子元素
`:last-child` 最后一个子元素
`:nth-child()` 选中第n个子元素
特殊值:
n 第n个 n的范围0到正无穷
2n 或 `even 表示选中偶数`位的元素
2n+1 或 `odd 表示选中奇数`位的元素
- 以上这些伪类都是根据所有的子元素进行排序
`:first-of-type` 选择器匹配元素其父级是特定类型的第一个子元素
`:last-of-type`选择器匹配元素其父级是特定类型的最后一个子元素。
`:nth-of-type()`选择器匹配元素其父级是特定类型的第n个子元素。
- 这几个伪类的功能和上述的类似,不通点是他们是在同类型元素中进行排序
- :not() 否定伪类
- 将符合条件的元素从选择器中去除
`:link` 用来表示没访问过的链接(正常的链接)
a:link{
color: red;
}
:visited
用来表示访问过的链接
由于隐私的原因,所以visited这个伪类只能修改链接的颜色
a:visited{
color: orange;
/* font-size: 50px; */
}
:hover
用来表示鼠标移入的状态
a:hover{
color: aqua;
font-size: 50px;
}
:active
用来表示鼠标点击
a:active{
color: yellowgreen;
}
https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements
/*
伪元素,表示页面中一些特殊的并不真实的存在的元素(特殊的位置)
伪元素使用 :: 开头
- before 和 after 必须结合content属性来使用
*/
选择第一个字母
```
p::first-letter{
font-size: 50px;
}
```
选择第一行
```
p::first-line{
background-color: yellow;
}
```
选中内容的样式
```
p::selection{
background-color: greenyellow;
}
```
元素的开始
```
div::before{
content: 'abc';
color: red;
}
```
元素的最后
```
div::after{
content: 'haha';
color: blue;
}
```
##
样式的冲突
/* 当我们通过不同的选择器,选中相同的元素,并且为相同的样式设置不同的值时,此时就发生了样式的冲突。
发生样式冲突时,应用哪个样式由选择器的权重(优先级)决定
*/
选择器的权重
内联样式 1,0,0,0
id选择器 0,1,0,0
类和伪类选择器 0,0,1,0
元素选择器 0,0,0,1
通配选择器 0,0,0,0
继承的样式 没有优先级
/* 比较优先级时,需要将所有的选择器的优先级进行相加计算,最后优先级越高,则越优先显示(分组选择器是单独计算的),
选择器的累加不会超过其最大的数量级,类选择器在高也不会超过id选择器
如果优先级计算后相同,此时则优先使用靠下的样式
可以在某一个样式的后边添加 !important ,则此时该样式会获取到最高的优先级,甚至超过内联样式,
注意:在开发中这个玩意一定要慎用!
*/
## 练习
> 选择器在线游戏:[http://m.zhaojishun.cn/cssgame/](http://m.zhaojishun.cn/cssgame/)
# 样式的继承
/*样式的继承,我们为一个元素设置的样式同时也会应用到它的后代元素上继承是发生在祖先后后代之间的
继承的设计是为了方便我们的开发, 利用继承我们可以将一些通用的样式统一设置到共同的祖先元素上,
这样只需设置一次即可让所有的元素都具有该样式.注意:并不是所有的样式都会被继承:
比如 背景相关的,布局相关等的这些样式都不会被继承。
我是一个p元素
我是p元素中的span
我是p元素外的span
我是div
我是div中的span
我是span中的em
p{
color: red;
background-color: orange;
}
div{
color: yellowgreen
}
# 单位
## 长度
### 像素
- 屏幕(显示器)实际上是由一个一个的小点点构成的
- 不同屏幕的像素大小是不同的,像素越小的屏幕显示的效果越清晰
- 所以同样的200px在不同的设备下显示效果不一样
### 百分比
- 也可以将属性值设置为相对于其父元素属性的百分比
- 设置百分比可以使子元素跟随父元素的改变而改变
- em是相对于元素的字体大小来计算的
- 1em = 1font-size
- em会根据字体大小的改变而改变
### rem
rem
- rem是相对于根元素的字体大小来计算
## 颜色
/*
颜色单位:
在CSS中可以直接使用颜色名来设置各种颜色
比如:red、orange、yellow、blue、green … …
但是在css中直接使用颜色名是非常的不方便
RGB值:
- RGB通过三种颜色的不同浓度来调配出不同的颜色
- R red,G green ,B blue
- 每一种颜色的范围在 0 - 255 (0% - 100%) 之间
- 语法:RGB(红色,绿色,蓝色)
RGBA:
- 就是在rgb的基础上增加了一个a表示不透明度
- 需要四个值,前三个和rgb一样,第四个表示不透明度
1表示完全不透明 0表示完全透明 .5半透明
十六进制的RGB值:
- 语法:#红色绿色蓝色
- 颜色浓度通过 00-ff
- 如果颜色两位两位重复可以进行简写
#aabbcc --> #abc
HSL值 HSLA值
H 色相(0 - 360)
S 饱和度,颜色的浓度 0% - 100%
L 亮度,颜色的亮度 0% - 100%
*/
## 角度
### deg
> **度(Degress)。一个圆共360度**
transform:rotate(2deg);
### turn
> **转、圈(Turns)。一个圆共1圈**
transform:rotate(.5turn);
# 文档流
文档流(normal flow)
- 网页是一个多层的结构,一层摞着一层
- 通过CSS可以分别为每一层来设置样式
- 作为用户来讲只能看到最顶上一层
- 这些层中,最底下的一层称为文档流,文档流是网页的基础(可以理解为ps中的图层)
我们所创建的元素默认都是在文档流中进行排列
- 对于我们来元素主要有两个状态
在文档流中
不在文档流中(脱离文档流)
- 元素在文档流中有什么特点:
- 块元素
- 块元素会在页面中独占一行(自上向下垂直排列)
- 默认宽度是父元素的全部(会把父元素撑满)
- 默认高度是被内容撑开(子元素)
* 行内元素
- 行内元素不会独占页面的一行,只占自身的大小
- 行内元素在页面中左向右水平排列,如果一行之中不能容纳下所有的行内元素
则元素会换到第二行继续自左向右排列(书写习惯一致)
- 行内元素的默认宽度和高度都是被内容撑开
–>
## 元素脱离文档流后特点
> 元素设置浮动以后,将会从文档流中脱离,从文档流中脱离后,元素的一些特点也会发生变化
* 块元素:
- 块元素不在独占页面的一行
- 脱离文档流以后,块元素的宽度和高度默认都被内容撑开
* 行内元素:
- 行内元素脱离文档流以后会变成块元素,特点和块元素一样
* 脱离文档流以后,不需要再区分块和行内了
# 盒子模型
![](http://img.zhaojishun.cn/img/image-20200427173924198.png)
盒模型、盒子模型、框模型(box model)
* CSS将页面中的所有元素都设置为了一个矩形的盒子
* 将元素设置为矩形的盒子后,对页面的布局就变成将不同的盒子摆放到不同的位置
* 每一个盒子都由一下几个部分组成:
内容区(content)
内边距(padding)
边框(border)
外边距(margin)
## `content` 内容区
内容区(content),元素中的所有的子元素和文本内容都在内容区中排列
内容区的大小由width 和 height两个属性来设置,行内元素无法设置宽高,其大小被内容撑开
width 设置内容区的宽度
height 设置内容区的高度
## `border` 边框
**边框**
边框的宽度 border-width
边框的颜色 border-color
边框的样式 border-style
border-width: 10px;
`默认值`,一般都是 `3个像素`
border-width可以用来指定四个方向的边框的宽度
值的情况
四个值:上 右 下 左
三个值:上 左右 下
两个值:上下 左右
一个值:上下左右
除了border-width还有一组 border-xxx-width
xxx可以是 top right bottom left
用来
`单独指定某一个边的宽度`
border-width: 10px;
border-top-width: 10px;
border-left-width: 30px;
color: red;
border-color用来指定边框的颜色,同样可以分别指定四个边的边框
规则和border-width一样
border-color也可以省略不写,如果省略了则自动使用color的颜色值
border-color: orange red yellow green;
border-color: orange;
border-style 指定边框的样式
solid 表示实线
dotted 点状虚线
dashed 虚线
double 双线
border-style的默认值是none 表示没有边框
border-style: solid dotted dashed double;
border-style: solid;
border-width: 10px;
border-color: orange;
border-style: solid;
/*
border简写属性,通过该属性可以同时设置边框所有的相关样式,并且没有顺序要求
除了border以外还有四个 border-xxx
border-top
border-right
border-bottom
border-left
border: solid 10px orange;
border-top: 10px solid red;
border-left: 10px solid red;
border-bottom: 10px solid red;
border: 10px red solid;
border-right: none;
## `padding` 内边距
> 内容区和边框之间的距离是内边距
一共有四个方向的内边距:
内边距的设置会影响到盒子的大小
背景颜色会延伸到内边距上
一共盒子的可见框的大小,由内容区 内边距 和 边框共同决定,
所以在计算盒子大小时,需要将这三个区域加到一起计算
padding-top: 100px;
padding-left: 100px;
padding-right: 100px;
padding-bottom: 100px;
padding 内边距的简写属性,可以同时指定四个方向的内边距,规则和border-width 一样
padding: 10px 20px 30px 40px;
padding: 10px 20px 30px ;
padding: 10px 20px ;
padding: 10px ;
## `margin` 外边距
* 外边距不会影响盒子可见框的大小
* 但是外边距会影响盒子的位置
* 一共有四个方向的外边距:
- `margin-top` 上外边距,设置一个正值,元素会向下移动
- `margin-right`默认情况下设置margin-right不会产生任何效果
- `margin-bottom`下外边距,设置一个正值,其下边的元素会向下移动
- `margin-left`左外边距,设置一个正值,元素会向右移动
* margin也可以设置负值,如果是负值则元素会向相反的方向移动
* 元素在页面中是按照自左向右的顺序排列的,所以默认情况下如果我们 `设置的左和上外边距会移动元素自身`
而 `设置下和右外边距会移动其他元素`
margin的简写属性
margin 可以同时设置四个方向的外边距 ,用法和padding一样
margin会影响到盒子实际占用空间
/* margin-top: 100px;
margin-left: 100px;
margin-bottom: 100px; */
/* margin-bottom: 100px; */
/* margin-top: -100px; */
/* margin-left: -100px; */
/* margin-bottom: -100px; */
/* margin-right: 0px; */
margin: 100px;
## 块元素的盒子模型
### 盒子的水平布局
```css
.outer{
width: 800px;
height: 200px;
border: 10px red solid;
}
.inner{
/* width: auto; width的值默认就是auto*/
width: 200px;
height: 200px;
background-color: #bfa;
margin-right: auto;
margin-left: auto;
/* margin-left: 100px;
margin-right: 400px */
/*
元素的水平方向的布局:
元素在其父元素中水平方向的位置由以下几个属性共同决定"
margin-left
border-left
padding-left
width
padding-right
border-right
margin-right
一个元素在其父元素中,水平布局必须要满足以下的等式
margin-left+border-left+padding-left+width+padding-right+border-right+margin-right = 其父元素内容区的宽度 (必须满足)
0 + 0 + 0 + 200 + 0 + 0 + 0 = 800
0 + 0 + 0 + 200 + 0 + 0 + 600 = 800
100 + 0 + 0 + 200 + 0 + 0 + 400 = 800
100 + 0 + 0 + 200 + 0 + 0 + 500 = 800
- 以上等式必须满足,如果相加结果使等式不成立,则称为过度约束,则等式会自动调整
- 调整的情况:
- 如果这七个值中没有为 auto 的情况,则浏览器会自动调整margin-right值以使等式满足
- 这七个值中有三个值和设置为auto
width
margin-left
maring-right
- 如果某个值为auto,则会自动调整为auto的那个值以使等式成立
0 + 0 + 0 + auto + 0 + 0 + 0 = 800 auto = 800
0 + 0 + 0 + auto + 0 + 0 + 200 = 800 auto = 600
200 + 0 + 0 + auto + 0 + 0 + 200 = 800 auto = 400
auto + 0 + 0 + 200 + 0 + 0 + 200 = 800 auto = 400
auto + 0 + 0 + 200 + 0 + 0 + auto = 800 auto = 300
- 如果将一个宽度和一个外边距设置为auto,则宽度会调整到最大,设置为auto的外边距会自动为0
- 如果将三个值都设置为auto,则外边距都是0,宽度最大
- 如果将两个外边距设置为auto,宽度固定值,则会将外边距设置为相同的值
所以我们经常利用这个特点来使一个元素在其父元素中水平居中
示例:
width:xxxpx;
margin:0 auto;
*/
}
.outer{
background-color: #bfa;
height: 600px;
/*
默认情况下父元素的高度被内容撑开
*/
}
.inner{
width: 100px;
background-color: yellow;
height: 100px;
margin-bottom: 100px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
/*
子元素是在父元素的内容区中排列的,
如果子元素的大小超过了父元素,则子元素会从父元素中溢出
使用 overflow 属性来设置父元素如何处理溢出的子元素
可选值:
visible,默认值 子元素会从父元素中溢出,在父元素外部的位置显示
hidden 溢出内容将会被裁剪不会显示
scroll 生成两个滚动条,通过滚动条来查看完整的内容
auto 根据需要生成滚动条
overflow-x:
overflow-y:
*/
overflow: auto;
}
.box2{
width: 100px;
height: 400px;
background-color: orange;
}
相邻的垂直方向外边距会发生重叠现象
.clearfix::before,
.clearfix::after{
content: '';
display: table;
clear: both;
}
display 用来设置元素显示的类型
可选值:
inline 将元素设置为行内元素
block 将元素设置为块元素
inline-block 将元素设置为行内块元素
行内块,既可以设置宽度和高度又不会独占一行
table 将元素设置为一个表格
none 元素不在页面中显示
visibility 用来设置元素的显示状态
可选值:
visible 默认值,元素在页面中正常显示
hidden 元素在页面中隐藏 不显示,但是依然占据页面的位置
.box1{
width: 100px;
height: 100px;
background-color: #bfa;
padding: 10px;
border: 10px red solid;
/*
默认情况下,盒子可见框的大小由内容区、内边距和边框共同决定
box-sizing 用来设置盒子尺寸的计算方式(设置width和height的作用)
可选值:
content-box 默认值,宽度和高度用来设置内容区的大小
border-box 宽度和高度用来设置整个盒子可见框的大小
width 和 height 指的是内容区 和 内边距 和 边框的总大小
*/
box-sizing: border-box;
}
Document
仿网易新闻列表
"content">
"category">
"">
财经
outline 用来设置元素的轮廓线,用法和border一模一样,轮廓和边框不同的点,就是 轮廓不会影响到可见框的大小
outline: salmon 10px solid;
.box1{
height: 200px;
width: 200px;
background-color: royalblue;
outline: salmon 10px solid;
}
hello
box-shadow
用来设置元素的阴影效果,阴影不会影响页面布局
第一个值 水平偏移量 设置阴影的水平位置 正值向右移动 负值向左移动
第二个值 垂直偏移量 设置阴影的水平位置 正值向下移动 负值向上移动
第三个值 阴影的模糊半径
第四个值 阴影的颜色
box-shadow: 20px 20px 50px rgba(0, 0, 0, .7);
.box1{
height: 200px;
width: 200px;
background-color: royalblue;
margin: 50px auto;
box-shadow: 20px 20px 50px rgba(0, 0, 0, .7);
}
border-radius: 用来设置圆角 圆角设置的圆的半径大小
border-top-left-radius:
border-top-right-radius
border-bottom-left-radius:
border-bottom-right-radius:
border-top-left-radius:50px 100px;
border-radius
可以分别指定四个角的圆角
四个值 左上 右上 右下 左下
三个值 左上 右上/左下 右下
两个个值 左上/右下 右上/左下border-radius: 50%;
将元素设置为一个圆形
border-radius: 0px 60px 0px 60px;
.box1{
height: 200px;
width: 200px;
background-color: royalblue;
margin: 50px auto;
border-radius: 0px 60px 0px 60px;
}
通过浮动可以使一个元素向其父元素的左侧或右侧移动
使用 float 属性来设置于元素的浮动
可选值:
注;意;,;
元素设置浮动以后,水平布局的等式便不需要强制成立
元素设置浮动以后,会完全从文档流中脱离,不再占用文档流的位置,
所以元素下边的还在文档流中的元素会自动向上移动
浮动目前来讲它的主要作用就是让页面中的元素可以水平排列, 通过浮动可以制作一些水平方向的布局
按住CTRL点击跳转
效果 :我们希望父元素的大小被子元素的内容撑开,父元素随着子元素大小的改变而改变
在浮动布局中, 父元素的高度默认是被子元素撑开的,
当子元素浮动后,其会完全脱离文档流,子元素从文档流中脱离
将会无法撑起父元素的高度,导致父元素的高度丢失
父元素高度丢失以后,其下的元素会自动上移,导致页面的布局混乱
所以高度塌陷是浮动布局中比较常见的一个问题,这个问题我们必须要进行处理!
.outer{
border: 10px red solid;
}
.inner{
width: 100px;
height: 100px;
background-color: #bfa;
float: left;
}
结果效果
官方文档:https://developer.mozilla.org/zh-CN/docs/Web/Guide/CSS/Block_formatting_context
BFC(Block Formatting Context) 块级格式化环境
- 可;以;通;过;一;些;特;殊;方;式;来;开;启;元;素;的;BFC:;
1、;设;置;元;素;的;浮;动;(;不;推;荐;);
2、;将;元;素;设;置;为;行;内;块;元;素;(;不;推;荐;);
3、;将;元;素;的;overflow设;置;为;一;个;非;visible的;值;
- 常;用;的;方;式; 为;元;素;设;置; **overflow:hidden** 开;启;其;BFC 以;使;其;可;以;包;含;浮;动;元;素;
.outer{
border: 10px red solid;
overflow: hidden;
}
.inner{
width: 100px;
height: 100px;
background-color: #bfa;
float: left;
}
效果
使用clear和::after实现父元素的大小被子元素的内容撑开,父元素随着子元素大小的改变而改变
.box1{
border: 5px solid #000000;
}
.box2{
height: 200px;
width: 200px;
background-color: skyblue;
float: left;
}
.box1::after{
content: '';
display: block;
clear: both;
}
如果我们不希望某个元素因为其他元素浮动的影响而改变位置,
可以通过clear属性来清除浮动元素对当前元素所产生的影响
clear
原;理;:;
设;置;清;除;浮;动;以;后;,;浏;览;器;会;自;动;为;元;素;添;加;一;个;上;外;边;距;,;
以;使;其;位;置;不;受;其;他;元;素;的;影;响;
仿w3c导航条
Document
- HTML/CSS
- Bowser Side
- Server Side
- Programming
- XML
- WebBuilding
- Rederence
display:flex
设置为块级弹性容器display:inline-flex
设置为行内的弹性容器 - 弹;性;元;素;
- 弹;性;容;器;的;子;元;素;是;弹;性;元;素;(;弹;性;项;);
- **弹;性;元;素;可;以;同;时;是;弹;性;容;器;**
flex-direction
指定容器中弹性元素的排列方式row
默认值,弹性元素在容器中 水平排列(左向右) 主轴 自左向右row-reverse
弹性元素在容器中反向水平排列(右向左) 主轴 自右向左column
弹性元素纵向排列 。 主轴 自上向下column-reverse
弹性元素方向纵向排列。 *主轴自下向上主轴:
弹性元素的排列方向称为主轴
侧轴:
与主轴垂直方向的称为侧轴
四种排列方式
flex-direction: row;
flex-wrap
设置弹性元素是否在弹性容器中自动换行设置弹性元素是否在弹性容器中自动换行, 当弹性容器一行容纳不下子元素时,子元素会不会换到第二行.
flex-wrap: nowrap;
flex-wrap: wrap;
flex-wrap: wrap-reverse;
flex-flow
简写属性wrap 和 direction 的简写属性 方向 换行
flex-flow: row wrap;
justify-content
主轴`` 上的空白空间的分布justify-content: flex-start;
justify-content: flex-end;
justify-content: center;
justify-content: space-around;
justify-content: space-between;
justify-content: space-evenly;
测试代码
Document
- "box1"
>1
"box2">2
"box3">3
"box4">4
align-items
元素在 辅轴
上如何对齐 align-items: stretch;
align-items: flex-start;
align-items: flex-end;
align-items: center;
测试代码
Document
- "box1"
>1
"box2">2
2
"box3">3
3
3
"box4">4
4
4
4
"box5">5
align-content
: 辅轴
空白空间的分布类似
justify-content
align-content: flex-start;
align-content: flex-end;
align-content: center;
align-content: space-around;
align-content: space-between;
align-items: center;
justify-content: center;
flex-grow
指定弹性元素的伸展的系数flex-grow: 1;
flex-shrink
指定弹性元素的收缩系数flex-shrink: 1;
flex-basis
指定的是元素在主轴上的基础长度如果主轴是 横向的 则 该值指定的就是元素的 宽度
如果主轴是 纵向的 则 该值指定的是就是元素的 *高度
默认值是 auto,表示 参考元素自身的高度或宽度
如果传递了一个具体的数值,则以该值为准
flex-basis: 20px;
flex 可以设置弹性元素所有的三个样式
flex 增长 缩减 基础;
flex: 1 1 auto;
order
设置弹性元素的排序顺序order
设置的元素排到最后.box1{
background-color:tomato;
order: 4;
}
.box2{
background-color: lightgreen;
order: 3;
}
.box3{
background-color: lightsalmon;
order: 2;
}
.box4{
background-color:mediumpurple;
order: 1;
}
align-self
用来覆盖当前弹性元素上的align-itemsalign-self: stretch;
仿淘宝分类
Document
定位(position)
相对定位:
.box1{
height: 200px;
width: 200px;
background-color: springgreen;
}
.box2{
height: 200px;
width: 200px;
background-color:steelblue;
position: relative;
left: 200px;
top: -200px;
}
.box3{
height: 200px;
width: 200px;
background-color:tan;
}
包含块( containing block )
- 正常情况下:
包含块就是离当前元素最近的祖先**块元素**
绝对定位的包含块:
包含块就是**离它最近**的**开启了定位**的**祖先元素**,
**如果所有的祖先元素都没有开启定位则根元素就是它的包含块**
1
4
5
2
3
body{
font-size: 60px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
}
.box2{
width: 200px;
height: 200px;
background-color: orange;
position: absolute;
/* left: 0;
top: 0; */
bottom: 0;
right: 0;
}
.box3{
width: 200px;
height: 200px;
background-color: yellow;
}
.box4{
width: 400px;
height: 400px;
background-color: tomato;
position: relative;
}
.box5{
width: 300px;
height: 300px;
background-color: aliceblue;
/* position: relative; */
}
- 可设置auto的值
margin width left right
- 因为**left 和 right的值默认是auto**,所以如果不指定left和right则等式不满足时,会自动调整这两个值
垂直方向布局的等式的也必须要满足
top + margin-top/bottom + padding-top/bottom + border-top/bottom + height = 包含块的高度
.box1{
width: 500px;
height: 500px;
background-color: #bfa;
position: relative;
}
.box2{
width: 100px;
height: 100px;
background-color: orange;
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
固定定位:
1
4
5
2
3
body{
font-size: 60px;
height: 2000px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
}
.box2{
width: 200px;
height: 200px;
background-color: orange;
position: fixed;
left: 0;
top: 0;
}
.box3{
width: 200px;
height: 200px;
background-color: yellow;
}
.box4{
width: 400px;
height: 400px;
background-color: tomato;
}
.box5{
width: 300px;
height: 300px;
background-color: aliceblue;
}
粘滞定位
body{
height: 3000px;
}
.nav{
width: 1210px;
height: 48px;
background-color: #E8E7E3;
margin:100px auto;
position: sticky;
top: 10px;
}
/* 设置nav中li */
.nav li{
float: left;
line-height: 48px;
}
/* 设置a的样式 */
.nav a{
display: block;
text-decoration: none;
color: #777777;
font-size: 18px;
padding: 0 39px;
}
.nav li:last-child a{
padding: 0 42px 0 41px;
}
/* 设置鼠标移入的效果 */
.nav a:hover{
background-color: #3F3F3F;
color: #E8E7E3;
}
对于 开启了定位的元素,可以通过 z-index属性来指定元素的层级, z-index需要一个整数作为参数, 值越大元素的层级越高元素的层级越高 越优先显示如果 元素的层级一样,则 优先显示靠下的元素祖先的元素的层级再高也不会盖住后代元素。
1
2
3
4
body{
font-size: 60px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
position: absolute;
/* z-index: 3; */
}
.box2{
width: 200px;
height: 200px;
background-color: rgba(255 , 0, 0, .3);
position: absolute;
top: 50px;
left: 50px;
/* z-index: 3; */
}
.box3{
width: 200px;
height: 200px;
background-color: yellow;
position: absolute;
top: 100px;
left: 100px;
z-index: 3;
}
.box4{
width: 100px;
height: 100px;
background-color: orange;
position: absolute;
}
仿京东
color 用来设置字体颜色
font-size 字体的大小
和font-size相关的单位
em 相当于当前元素的一个font-size
rem 相对于根元素的一个font-size
font-family 字体族(字体的格式)
可选值:
serif 衬线字体
sans-serif 非衬线字体
monospace 等宽字体
- 指定字体的类别,浏览器会自动使用该类别下的字体
- font-family 可以同时指定多个字体,多个字体间使用,隔开
字体生效时优先使用第一个,第一个无法使用则使用第二个 以此类推
font-family: 'Courier New', Courier, monospace;
font-face可以将服务器中的字体直接提供给用户去使用
问题:
1.加载速度
2.版权
3.字体格式
@font-face {
/* 指定字体的名字 */
font-family:'myfont' ;
/* 服务器中字体的路径 */
src: url('./font/ZCOOLKuaiLe-Regular.ttf') format("truetype");
}
图标字体(iconfont)
1.下载 https://fontawesome.com/
2.解压
3.将css和webfonts移动到项目中
4.将all.css引入到网页中
5.使用图标字体
- 直接通过类名来使用图标字体
class="fas fa-bell"
class="fab fa-accessible-icon"
>
+图标的编码;
使用帮助:https://www.iconfont.cn/help/detail?spm=a313x.7781069.1998910419.d8cf4382a&helptype=code
Document
行高(line height)
line-height
来设置行高
字体框
- 字体框就是字体存在的格子,设置font-size实际上就是在设置字体框的高度
行高会在字体框的上下平均分配
可以将行高设置为和高度一样的值,使单行文字在一个元素中垂直居中 line-height: 200px;
div{
height: 100px;
border: 1px red solid;
line-height: 100px;
}
漳卅的那个散发的zhgnasdngaa
漳卅的那个散发的zhgnasdngaa
如果使用简写属性,除设置的属性外所有字体属性均重置为默认值
div{
border: 1px red solid;
/*
font 可以设置字体相关的所有属性
语法:
font: 字体大小/行高 字体族
行高 可以省略不写 如果不写使用默认值
*/
/* font-size: 50px;
font-family: 'Times New Roman', Times, serif; */
font-weight: bold;
/* font: 50px/2 微软雅黑, 'Times New Roman', Times, serif; */
/* font: normal normal 50px/2 微软雅黑, 'Times New Roman', Times, serif; */
font: bold italic 50px/2 微软雅黑, 'Times New Roman', Times, serif;
/* font:50px 'Times New Roman', Times, serif;
line-height: 2; */
/* font-size: 50px; */
}
font-weight
自重font-weight: bold;
font-style
字体风格font-style: italic;
text-align
文本对齐方式text-align: justify;
vertical-align
元素垂直对齐方式vertical-align:baseline;
text-decoration
设置文本修饰text-decoration: overline;
white-space
设置网页如何处理空白white-space: nowrap;
overflow
设置父元素如何处理溢出的子元素 overflow: hidden;
text-overflow
属性规定当文本溢出包含元素时发生的事情。text-overflow: ellipsis;
div{
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic minima, animi quos suscipit voluptas provident rerum architecto! Impedit ducimus sequi dolor sunt, incidunt, eveniet fuga, quae magnam illo minima vel.
仿京东导航条
Document
background-color
设置背景颜色颜色值设置参考 Ctrl+单击我
background-color: #bfa;
background-image
设置背景图片background-image: url("./img/1.png");
background-repeat
设置背景的重复方式background-repeat: no-repeat;
background-position
用来设置背景图片的位置background-position: center;
background-position: -50px 300px;
设置居中
.box2{
height: 200px;
width: 200px;
background-image: url(../static/img/8bcaa0f267965535.jpg!cc_100x100.webp);
border: steelblue 1px solid;
background-repeat: no-repeat;
background-position: center;
}
如果我们的背景图片需要切换(或者是不同的动作切换不同的图片),可以将多个小图片放到一张大图中,通过调整 background-position属性来显示不同的位置,这样图片加载到网页中,就可以避免闪烁,也可以节省流量,降低请求数量,这个技术在网页应用中十分广泛,这种图我们称为雪碧图。
使用步骤:
.box{
width: 36px;
height: 42px;
background-image: url(../static/img/23f3ddf914b1b527d0429a3d713cfe3a.png);
background-position: 0px -193px;
}
.box:hover{
background-position: -41px -193px;
}
.box:active{
background-position: -83px -193px;
}
background-clip
设置背景的边界background-clip: content-box;
background-origin
背景图片的偏移量计算的原点background-origin: border-box;
background-origin: 0,0;
background-size
设置背景图片的大小第一个值表示宽度
第二个值表示高度
如果只写一个,则第二个值默认是 auto
cover
图片的比例不变,将元素铺满
contain
图片比例不变,将图片在元素中完整显示
background-size: contain;
background-attachment
背景图片是否跟随元素移动background-attachment: fixed;
通过渐变可以设置一些复杂的背景颜色,可以实现 从一个颜色向其他颜色过渡的效果 !! 渐变是图片,需要通过
background-image
来设置
线性渐变,颜色沿着一条直线发生变化
linear-gradient(red,yellow)
红色在开头,黄色在结尾,中间是过渡区域repeating-linear-gradient()
可以平铺的线性渐变效果1
background-image: linear-gradient(red,yellow,#bfa,orange);
效果2
background-image: linear-gradient(red 50px,yellow 100px, green 120px, orange 200px);
效果3
background-image: repeating-linear-gradient(to right ,red, yellow 50px);
radial-gradient() 径向渐变(放射性的效果)
默认情况下径向渐变的形状根据元素的形状来计算的
正方形 --> 圆形
长方形 --> 椭圆形
circle
圆形ellipse
椭圆closest-side
近边closest-corner
近角farthest-side
远边farthest-corner
远角top
right
left
center
bottom
background-image: radial-gradient(farthest-corner at 100px 100px, red , #bfa)
雪碧图
电影卡片练习
在现实生活中,我们经常需要使用表格来表示一些格式化数据:
课程表、人名单、成绩单…
同样在网页中我们也需要使用表格,我们通过table标签来创建一个表格
在table中使用tr表示表格中的一行,有几个tr就有几行
在tr中使用td表示一个单元格,有几个td就有几个单元格
rowspan
纵向的合并单元格colspan
横向的合并单元格
A1
B1
C1
D1
A2
B2
C2
D2
A3
B3
C3
A4
B4
C4
可以将一个表格分成三个部分:
* 头部 thead
* 主体 tbody
* 底部 tfoot
th 表示头部的单元格
日期
收入
支出
合计
2000.1.1
500
200
300
2000.1.1
500
200
300
2000.1.1
500
200
300
2000.1.1
500
200
300
合计
300
默认情况下元素在td中是垂直居中的 可以通过 vertical-align 来修改
vertical-align:middle;
text-align: center;
如果表格中没有使用tbody而是直接使用tr,
那么浏览器会 自动创建一个tbody,并且将tr全都放到tbody中
tr不是table的子元素
文本框
注意:数据要提交到服务器中,必须要为元素指定一个name属性值
文本框
密码框
像这种选择框,必须要指定一个value属性,value属性最终会作为用户的填写的值传递给服务器
- checked 可以将单选按钮设置为默认选中
单选按钮
多选框
autocomplete="off"
关闭自动补全readonly
将表单项设置为只读,数据会提交disabled
将表单项设置为禁用,数据不会提交autofocus
设置表单项自动获取焦点仿小米商城第一屏
transition
MDN:https://developer.mozilla.org/zh-CN/docs/Web/CSS/transition
简单示例
.box{
height: 200px;
width: 200px;
background-color: lightblue;
transition: width 1s;
}
.box:hover{
width: 150px;
}
transition-property:
指定要执行过渡的属性transition-property: height , width;
transition-property: all;
transition-duration:
指定过渡效果的持续时间transition-duration: 2s;
为每个属性分别设置持续时间
transition-duration: 100ms, 2s;
transition-timing-function:
设置过渡过程的加速曲线 transition-timing-function: ease;
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-2kFVUJl1-1622880953146)(http://img.zhaojishun.cn/img/ease] .gif)
transition-timing-function: linear;
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-VMHhgaUS-1622880953164)(http://img.zhaojishun.cn/img/linear] .gif)
transition-timing-function: ease-in;
transition-timing-function: ease-out;
transition-timing-function: ease-in-out;
transition-timing-function: cubic-bezier(.17,.67,.29,-0.82);
transition-timing-function: steps(3, end);
transition-delay:
过渡效果的延迟,等待一段时间后在执行过渡transition-delay: 2s;
transition
可以同时设置过渡相关的所有属性,只有一个要求,如果要写延迟,则两个时间中第一个是持续时间,第二个是延迟
transition:2s margin-left 1s cubic-bezier(.24,.95,.82,-0.88);
animation
动画和过渡类似,都是可以实现一些动态的效果,不同的是过渡需要在某个属性发生变化时才会触发,动画可以自动触发动态效果
.box{
height: 5px;
width: 750px;
background-color: lightgray;
}
.box2{
height: 5px;
width: 0px;
margin-left: 0;
background-color:lightgreen;
animation-name: test;
animation-duration: 3s;
}
@keyframes test {
from{
width: 0px;
}
to{
width: 750px;
}
}
@keyframes
关键帧设置动画效果,必须先要设置一个关键帧,关键帧设置了动画执行每一个步骤
@keyframes test {
from{
margin-left: 0;
background-color: orange;
}
to{
background-color: red;
margin-left: 700px;
}
}
animation-duration:
动画的执行时间animation-duration: 4s;
animation-delay
动画的延时,等待一段时间后在执行动画animation-delay: 2s;
animation-timing-function
设置过渡过程的加速曲线animation-timing-function: ease-in-out;
animation-iteration-count
动画执行的次数infinite
无限执行animation-iteration-count: 1;
animation-direction
指定动画运行的方向normal
默认值 从 from 向 to运行 每次都是这样reverse
从 to 向 from 运行 每次都是这样alternate
从 from 向 to运行 重复执行动画时反向执行alternate-reverse
从 to 向 from运行 重复执行动画时反向执行animation-direction: alternate-reverse;
running
默认值 动画执行paused
动画暂停animation-play-state: paused;
none
默认值 动画执行完毕元素回到原来位置forwards
动画执行完毕元素会停止在动画结束的位置backwards
动画延时等待时,元素就会处于开始位置both
结合了forwards 和 backwardsanimation: test 2s 2 1s alternate;
transform
变形就是指通过CSS来改变元素的 形状或位置
变形 不会影响到页面的布局transform
用来设置元素的变形效果
translate
translateX()
沿着x轴方向平移transform: translateX(100px);
平移过渡效果
translateY()
沿着y轴方向平移transform: translateY(100px);
平移过渡效果
translateZ()
沿着z轴方向平移z轴平移,调整元素在z轴的位置,正常情况就是调整元素和人眼之间的距离,
距离越大,z轴离人越进。距离约小,元素离人越远
z轴平移属于立体效果(近大远小), 默认情况下网页是不支持透视,如果需要看见效果
必须要设置网页的视距
html{
/* 设置当前网页的视距为800px,人眼距离网页的距离 */
perspective: 800px;
}
transform: translateZ(100px);
平移过渡效果
rotate
通过旋转可以使元素沿着x y 或 z旋转指定的角度
rotateX()
沿着x轴方向平移transform: rotateX(180deg);
旋转过渡效果
rotateY()
沿着y轴方向平移transform: rotateY(180deg);
旋转过渡效果
rotateZ()
沿着z轴方向平移transform: rotateZ(180deg);
旋转过渡效果
backface-visibility:
是否显示元素的背面backface-visibility: hidden;
效果
scale
scaleX()
水平方向缩放 transform: scaleX(.5);
缩放过渡效果
scaleY()
垂直方向缩放 transform: scaleY(.5);
缩放过渡效果
scale
双方向缩放transform: scale(1.5);
缩放过渡效果
transform-style: preserve-3d;
表
Document
立方体
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-EoKkfb9Q-1622880953228)(http://img.zhaojishun.cn/img/dh.gif)]
Document
opacity: 0.7;
less是一门css的预处理语言
less是一个css的增强版, 通过less可以编写更少的代码实现更强大的样式
在less中添加了许多的新特性:像 对变量的支持、对mixin的支持… …
less的语法大体上和css语法一致,但是less中增添了许多对css的扩展,
所以浏览器无法直接执行less代码, 要执行必须向将less转换为css,然后再由浏览器执行
IE支持度不高
声明与使用
--color:#ff0;
background-color: var(--color);
安装插件后再写less代码时会自动生成css代码
body{
width: 100px;
height: 100px;
div{
color: red;
p{
color: royalblue;
}
}
}
//less单行注释
/*
css多行注释
*/
声明与赋值
//单位变量
@a:100px
@b:#bfa
div{
width:@a;
color:@b;
}
&当前块
body{
// &:hover = body:hover
&:hover{
color: red;
}
}
body:hover {
color: red;
}
样式继承
.box1{
width: 200px;
}
.box2:extend(.box1){
color: blue;
}
.box1,
.box2 {
width: 200px;
}
.box2 {
color: blue;
}
样式复制
.box1{
width: 200px;
}
.box2{
.box1();
color: blue;
}
.box1 {
width: 200px;
}
.box2 {
width: 200px;
color: blue;
}
公共样式,类似函数
.box1(){
width: 200px;
color: red;
}
.box2{
.box1();
}
.box2 {
width: 200px;
color: red;
}
方法调用,传参
.box1(@h,@w){
width: @w;
height: @h;
color: red;
}
.box2{
// .box1(100px,200px);
.box1(@w:200px,@h:100px);
}
.box2 {
width: 200px;
height: 100px;
color: red;
}
默认
情况下在 pc端**,一个 css像素 = 一个物理像素 1:1
viewport
- 此时,css像素和物理像素的比是 1:1
视口宽度 960px(CSS像素)
1920px(物理像素)
- **此时,css像素和物理像素的比是1:2**即一个浏览器显示一个css像素宽度,物理像素用了两个像素显示(此处忽略高度),`也就是100个css像素经过缩放200%后显示器显示200个像素`。
影响视口宽度的因素有
浏览器缩放百分比
,系统缩放
,拖动浏览器窗口
默认
情况下,移动端的网页都会将视口设置为 980像素
(css像素)。 以确保pc端网页可以在移动端正常访问,但是如果网页的宽度超过了980,移动端的浏览器会 自动对网页缩放
以完整显示网页。
所以基本大部分的pc端网站都可以在移动端中正常浏览,但是往往都不会有一个好的体验, 为了解决这个问题,大部分网站都会 专门为移动端设计网页
移动端默认情况下像素比是 980/移动端宽度
,即视口宽度(css像素)/移动端物理屏幕宽度
我的手机是小米6,默认情况下像素比是980/1080=0.907
如果我们直接在网页中编写移动端代码,这样在980的视口下,像素比是非常不好,导致网页中的内容非常小
编写移动页面时,必须要确保有一个比较合理的 像素比
:
1css像素 对应 2个物理像素
1css像素 对应 3个物理像素
可以通过meta标签来设置视口宽度,控制像素比,如果这样固定视口宽度会导致再不同机型下显示效果不同。
所以 不能将视口宽度写死
每一款移动设备设计时,都会有一个最佳的像素比,所以设备不同,像素比不同
一般我们只需要将像素比设置为该值即可得到一个最佳效果
将像素比设置为最佳像素比的视口大小我们称其为完美视口
不同手机完美视口的大小是不同的。
iphonex 375px
iphone6 414px
如果设置一个元素宽度为375px,再iphonex里显示正常,再iphone6中就不能占满宽度。
由于不同设备视口和像素比不同,所以同样的375个像素在不同的设备下意义是不一样,
为什么不用100%呢?
在多层元素嵌套下,百分比的参照物不同,所以不能用百分比进行布局。
vw
表示的是视口的宽度(viewport width)
vw单位永远参考于视口宽度进行计算
常规的设计图宽度750px,使用vw如何通过设计图中的大小来设计网站大小?
设计图中48x 35像素大小的元素如何在页面中保证元素大小?
100vw = 750px (设计图中像素)
0.1333333333333333333vw = 1px
0.13333333333vw x 48px = 6.4vw
0.13333333333vw x 35px = 4.66666666666vw
如果根据设计图像素计算vw , 必须通过0.133333333333*px ,数值的换算非常不方便
1rem = 1 html的字体大小
能否将font-size设置为0.1333333333来方便设置vw呢?
font-size: 0.1333333333333333vw;
网页中字体大小最小是12px,不能设置一个比12像素还小的字体
如果我们设置了一个小于12px的字体,则字体自动设置为12
现在将font-size 扩大100倍
font-size: 13.33333333333333vw;
每次使用时设计图像素除100
width: 0.48rem;
height: 0.35rem;
Document
I Learn
课程
更多
*{
margin: 0;
padding: 0;
}
// 设置设计图宽度
@total-wigth:750;
//设置宽度
@content-width:6.93rem;
a{
text-decoration: none;
}
html{
// 设置rem比值
font-size: 100vw / @total-wigth * 100;
background-color: #eff0f4;
}
.head{
display: flex;
// background-color: skyblue;
justify-content: space-between;
height: 1.75rem;
width: 6.93rem;
line-height: 1.75rem;
margin: 0 auto;
// 辅轴对齐方式
align-items: center;
.learn{
font-size: 0.7rem;
color: #24253d;
}
i{
color: #656565;
font-size: 28px;
}
}
.banner{
width: 6.93rem;
// height: 2.27rem;
margin: 0 auto;
// background-color: sandybrown;
img{
width: 100%;
background-color: rosybrown;
border-radius: 15px;
}
}
.btn-grop{
width: 6.93rem;
height: 3.29rem;
margin: 0 auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-content: space-evenly;
a{
color: seashell;
height: 1.04rem;
width: 3.27rem;
font-size: 0.42rem;
line-height: 1.04rem;
border-radius: 8px;
text-align: center;
i{
font-size: 0.42rem;
}
}
.book{
background-color: #f97053;
}
.star{
background-color: #c961ff;
}
.tag{
background-color: #ff3971;
}
.down{
background-color: #1d9bfe;
}
}
.list{
height: 4rem;
margin-bottom: 0.89rem;
.title{
height: 0.46rem;
width: 6.60rem;
display: flex;
font-size: 0.39rem;
justify-content: space-between;
margin: 0 auto 14px auto;
padding-left: 14px;
border-left: 2px solid #3a84ff;
align-items: center;
line-height: 0.46rem;
text-align: center;
a{
color: #656565;
}
}
.items{
// background-color: steelblue;
padding: 0.3rem;
display: flex;
overflow: auto;
.item{
flex: none;
height: 3.03rem;
width: 2.85rem;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, .3);
padding: 0.22rem;
display: flex;
flex-direction: column;
border-radius: 0.2rem;
justify-content: space-between;
margin-right: 0.24rem;
.title-img{
height: 1.55rem;
img{
width: 100%;
}
}
.title-name{
font-size: 0.35rem;
color: #24253d;
}
.user-name{
display: flex;
align-items: center;
img{
width: 0.42rem;
height: 0.42rem;
margin-right: 5px;
vertical-align: top;
}
p{
font-size: 0.29rem;
color: #969494;
}
}
}
}
}
网页可以根据不通的设备或窗口大小呈现出不同的效果
使用响应式布局,可以使一个网页适用于所有设备
响应布局的关键就是媒体查询
通过媒体查询,可以为不通的设备,或设备不同状态来分别设置样式
语法: @media 查询规则{}
媒体类型
screen
带屏幕的设备@media only screen {
body{
background-color: #bfa;
}
}
@media (max-width: 500px){
body{
background-color: #bfa;
}
样式切换的分界点,我们称其为断点,也就是网页的样式会在这个点时发生变化
下面是比较常用的断点
@media only screen and (min-width: 500px) and (max-width:700px){
body{
background-color: #bfa;
}
}
标题:CSS 记录
参考 http://blog.zhaojishun.cn/articles/2020/05/07/1588811611903.html)