安超
Follow

After following, you can keep track of his dynamic information in a timely manner

Course notes
  • Courses in the relevant section:css layout unit

    box-sizing:boder-box px em rem vh vw px:绝对单位,和设备相关.1 in = 96px em:等于系统的font-size.是一个可以被继承的属性.等于当前或者上级元素的默认字号,参照物是父级或者上级元素. rem:永远和html中的font-size属性一致.参照物固定 vx: vw:

    2022-10-070个赞

  • Courses in the relevant section:Login modal box positioning practice

    position: 1.relative:相对自身,在文档流中的位置 2.absolute:相对于包含块,不在文档流中,包含块的定位属性不能是static 3.fix:是绝对定位的一个子集.他的包含块是固定的,永远是body.

    position:fixed top:0;; botton:0; left:0; right:0; 会覆盖整个页面,但是position:relative 不会有这个效果,为什么?

    2022-10-080个赞

  • Courses in the relevant section:Basic knowledge of HTTP and URL02

    url的几个关键点:http://site.cn/index.php/user/add?p=3&key=admin#link 1.http:// :协议 2.site.cn :域名/主机 3.:80: 端口 4./index.php : 入口文件/应用程序 5./user/add :PATH_INFO,用来做路由 6.?p=3&key=admin :查询参数/查询字符串/GET请求 7.#link : 锚点/ hash 参数

    2022-10-140个赞