单行文本溢出隐藏:
1、定义文本父元素框的宽度,width;
2、超出隐藏 overflow:hidden;
3、强制文本在一行显示white-space:nowrap;
4、溢出文本显示省略号 text-overflow:ellipsis
1、定义文本父元素框的宽度,width;
2、超出隐藏 overflow:hidden;
3、强制文本在一行显示white-space:nowrap;
4、溢出文本显示省略号 text-overflow:ellipsis
2017-03-09
其实rem是相对于html的font-size大小来决定的,那要是html定了大小,岂不是总体的布局什么的大小也定了么?对于html大小适配不同的终端,用到媒体查询,我倒是觉得用vw直接设置html的大小更好用,个人意见,供大家参考!
2017-03-09
flex布局不定宽高的垂直水平居中
display:flex;
justify-content:center;
align-items:center;
display:flex;
justify-content:center;
align-items:center;
2017-03-08
不定宽高的垂直水平居中
position:absolute;
top:50%;
left:50%;
transform:translate(-50%);
position:absolute;
top:50%;
left:50%;
transform:translate(-50%);
2017-03-08