Files
ClassContent/历届学生/fontendsix/每日课程/2021-10-20/笔记.txt
2024-09-27 02:06:13 +08:00

46 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

border-radius 设置圆角
zoom 实现对元素的缩放,一般用于字体font-size 小于12px的情况
border 粗细 线条类型 线条颜色
border: 1px solid #eee;
background-attachment: fixed; 背景图的定位
background-repeat 设置背景图是否重复
background-position 设置背景图定位
cursor 修改光标的样式
background-image: linear-gradient(角度, 第一个颜色, 第二个颜色);
定位 position :
通过:left right top bottom
相对定位 relative :
当元素被设置相对定位后,他原本的位置还在,但是他脱离了页面(文档流)
定位参考对象:
它的定位参考对象就是原本的位置
绝对定位 absolute :
当元素被设置绝对定位后,他原本的位置不在,但是他脱离了页面(文档流)
定位参考对象:
父元素是否设置过定位
是:定位参考对象就是父元素的位置(当前位置)
否:定位参考对象就是浏览器边框
固定定位 fixed :
当元素被设置固定定位后,他原本的位置不在,但是他脱离了页面(文档流)
定位参考对象:
定位参考对象就是浏览器边框
z-index