1. 首页
  2. 数据库
  3. 其它
  4. css常用元素水平垂直居中方案

css常用元素水平垂直居中方案

上传者: 2021-02-24 01:52:43上传 PDF文件 33KB 热度 22次
flex实现水平垂直居中 适用场景:父子宽高都可未知(比较推荐这种方式,简单,而且目前兼容性也不错。) <html> <head> <style> .parent { width: 100%; height: 100px; background: cyan; display: flex; justify-content: center; align-items: center; }
用户评论