css 学习笔记 常用到的知识
做 loading 居中
剧中通常就是 top left 50% 再调一下自己就可以了
关键是要有 width height
遇到一些base on content 决定 height 的情况一般上有几个方案。
1. set min height 至少有一个 height (但是内容出来后就会跳,这个体验不是很好)
2. 找一个可靠的 parent 来定位. 这个 parent 的 width height 要是固定的. 这样就不会跳了
3. set 100% height 跟 parent 大, div 固定了height 就不会跳了,但是这个设计不一样通用