-
子元素设置 也可父元素一并设置 align-self:fiex-start 顶 align-self:fiex-end 底 align-self:fiex-center 中 align-self:fiex-auto 填满整个容器 align-self:fiex-stretch 填满整个容器 设置高度则不会铺满查看全部
-
justify-content:flex-start 子元素靠左 像fl justify-content:flex-end 子元素靠右 像fr justify-content:flex-center 子元素居中 justify-content:space-between 左右两边 justify-content:space-around 均匀排列查看全部
-
-webkit-fiex-wrap:nowrap 不会换行 自适应宽度比例 -webkit-fiex-wrap:wrap 超出会换行查看全部
-
fiex-directon :row 水平 : column水平铺满换行查看全部
-
实现不定宽高水平垂直居中方案 一、绝对定位top和left50%加translate(-50%,-50%) 二、flex方法, justify-content: center;//子元素水平居中, align-items: center;//子元素垂直居中; display: flex;查看全部
-
弹性布局 父元素 display: -webkit-flex; 子元素 flex:1;查看全部
-
移动Web最佳viewport设置 <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">查看全部
-
tab基础事件查看全部
-
一像素边框问题:查看全部
-
高清图片查看全部
-
移动Web最佳viewport设置查看全部
-
开启弹性滚动: body{ overflow:scroll; -webkit-overflow-scrolling:touch; }查看全部
-
为了解决rem在进行单位换算上的麻烦问题,给大家介绍个使用rem的小方法,设置html字体大小为font-size:62.5%;然后使用rem的时候就更好用了,比如1.2rem=12px,1.4rem=14px,1.6rem=16px. 单行文本溢出隐藏: 1、定义文本父元素框的宽度,width; 2、超出隐藏 overflow:hidden; 3、强制文本在一行显示white-space:nowrap; 4、溢出文本显示省略号 text-overflow:ellipsis查看全部
-
实现不定宽高水平垂直居中方案,一、绝对定位top和left50%加translate(-50%,-50%) ;二、flex方法,justify-content: center;//子元素水平居中,align-items: center;//子元素垂直居中;display: flex;查看全部
-
ios默认 布局viewport =980,document.body.clientWidth查看, width:用来改变布局viewport, width=device-width:使布局viewport =设备宽度 度量viewport:由window.innerWidth查看 initial-scale=1:缩放比,控制window.innerWidth/document.body.clientWidth=1。自带width=device-width 最佳设置: 布局viewport = 设备宽度 = 度量viewport user-scalable=no:不可缩放查看全部
举报
0/150
提交
取消