CSS中字体和背景(font && background)
Posted by xiongmao; tagged with 字体 , 背景 , font , background
目录:
图标字体
图标字体(inconfont)
-在网页中经常需要使用一些图标,可以通过图片引入图标,但是图片大小本身比较大,并且非常的不灵活
-所以在使用图标时,我们还可以将图标直接设置为字体
通过font-face的形式来对字体进行引入
fontawesome 使用步骤
1.官网https://fontawesome.com/
2.解压
3.将css和webfonts引入到项目中
4.将all.css引入到网页中
5.使用图标字体
-直接通过类名来使用图标字体
class="fas fa-bell" fas和fab是固定格式
class="fab ......"
通过伪元素来设置图标字体
1.找到要设置图标的元素通过before或after选中
2.在content中设置字体的编码
3.设置字体的样式
fab
font-family:'Font Awsesome 5 Free';
font-weight:900;
字体
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
texte-decoration 设置文本样式
可选值
none
underline 下划线
line-through 删除线
overline 上划线
white-space 设置网页如何处理空白
可选值:
normal 正常
nowrap 不换行
pre 保留空白
.box1{
width: 100px;
white-space: nowrap;
overflow: hidden;
/*text-overflow:ellipsis将文字多余的显示为省略号,这几项缺一不可*/
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div class="box1">
ajklsdhaSDFHJddosssssspofsidfu9hjdasoifkjaioekdfjasiodgjhguspfdghjkfvmaf
</div>
</body>
</html>
行高
行高(line-hight)
-行高指的是文字占有的实际高度
-可以通过line-height来设置行高
行高可以指定一个大小(px em)
也可以直接为行高设置一个整数
-行高经常还用来设置文字的行间距
可以将行高设置为何高度一样的值,使单行文字在一个元素中垂直居中
背景
background-image设置背景图片
语法:
background-image: url("图片路径");
background-repeat 用来设置背景的重复方式
语法:background-repeat:no-repeat;
可选值:
repeat 默认值,背景会沿着x轴和y轴重复
repeat-x 沿者x轴方向重复
repeat-y 沿者y轴方向重复
no-repeat 背景图片不重复
background-position 用来设置背景图片的位置
设置方式:
通过top left right bottom center
使用方位词同时必须要指定两个值
通过偏移量来指定背景图片的位置
水平方向偏移量 垂直方向偏移量
background-position:center center;
background-position:-100px 300px;
设置背景的范围
background-clip
可选值:
boder-box 默认值,背景会出现在边框的下边
padding-box 背景不会出现在边框,只出现在内容区和内边距
content-box 背景只会出现在内容区
background-origin 背景图片的偏移量计算的原点
padding-box 默认值,background-position从内边距处开始时计算
content-box 背景图片的偏移量从内容区开始计算
border-box 背景图片的偏移量从边框开始计算
background-origin:border-box;
background-clip:content-box;
background-size 设置背景图片的大小
第一个值表示宽度
第二个值表示高度
-如果只写一个,则第二个值默认为auto
cover 图片的比例不变,将元素铺满
contain 图片比例不变,将图片在元素中完整显示
background-size:contain
了解:
background-attachment
-背景图片是否跟随元素移动
-可选值:
scroll 默认值 背景图片会跟随元素移动
fixed 背景会固定在页面中,不会随元素移动
background-color
background-image
background-repeat
background-position
background-size
background-origin
background-clip
background-attachment
-background背景相关的简写属性,所有的样式都可以通过改样式来设置,并且该样式没有顺序要求,也没有哪个属性是必须写的
注意:
background-size必须写在background-position的后边,使用/隔开
background-position/background-size
bakcgroud-origin background-clip 两个样式,orgin要在clip前面
线性渐变
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box1{
width: 200px;
height: 200px;
渐变:
通过渐变来设置一些复杂的背景颜色,可以实现从一个颜色向其他颜色过渡的效果
!!渐变是图片,需要通过background-image来设置
线性渐变,颜色沿者一条直线发生变化
linear-gradient()
linear-gradient(red,yellow)从红色开头,黄色结尾,中间是过渡区域
-线性渐变的开头,可以指定一个渐变的方向
to left
to right
to bottom
to top
xxxdeg deg表示度数
turn turn表示圈
-渐变可以同时指定多个颜色,多个颜色默认情况下平均分布,
也可以手动指定渐变的分布情况
background-image: repeating-linear-gradient()
可以平铺的线性渐变
background-image: linear-gradient( red 50px,yellow 100px); */
background-image: linear-gradient(red,yellow,#bfa); */
background-image: repeating-linear-gradient(red 50px,yellow 100px);
}
</style>
</head>
<body>
<div class="box1"></div>
</body>
</html>