/* 定位模块居中 */
display: flex;
flex-flow: wrap;
justify-content: center;
/* 文字上下居中 */
display: flex;
flex-flow: wrap;
text-align: center;
align-items: center;
justify-content: center;
/* 满屏定位 */
display: flex;
/ *置顶浮游定位 / position: fixed; / display布局时内容自动换行 */
flex-flow: wrap;
/* 父级模块不溢出 / width: auto; height: auto; overflow: auto; / 不要用 float: right; */
/* 模块背景上下渐变色 */
background: linear-gradient(#b3b3b3,#fff,#b3b3b3);
/* 文字行距 / line-height: 105%; / 空格自动换行 / white-space:Pre-line; / display布局时内容自动换行 */
flex-flow: wrap;
/* 鼠标点击不修改样式 */
pointer-events:none;
858 Views