前端课1 大纲 -css局部,背景,优先级

2020-05-09  本文已影响0人  mask2012

f12调试大法

快速预览与学习

CSS 常见布局方式
https://juejin.im/post/599970f4518825243a78b9d5

  1. display
  2. position
  3. float
  4. flex

盒模型

display

position

image

float:left/right

由此引发的浮动闭合方案

  1. clear:both
  2. overflow:hidden

display:flex

布局新时代,兼容性速查https://caniuse.com/#search=flex
写在父层上,决定了子元素的排列方式,而不是自己
通过例子快速掌握
http://node.dengtacj.cn:55561/demo/flex-demo/flex-demo.html

background

css优先级

实战之前-语义,结构

https://juejin.im/post/5eb4f89d5188256d800a4b33

image

语义的好处

  1. 用户体验
  2. 利于seo
  3. 团队开发,可读性

好的结构是书写css的基础,考察css水平就看结构

实战之垂直居中

  1. position:fixed; left:50%; top:50%; transform:translate(-50%,-50%) (写给自己)
  2. position:fixed; left:0; top:0; width:100%; height:100%; display:flex; justify-content:center; align-items:center (写在父层)

实战之列表

image

实战之todo

image
上一篇下一篇

猜你喜欢

热点阅读