- input中的placeholder字体居中
input {
width: 100%;
// 一定要设置控件的文字大小不然会掉下来
font-size: (12 / @rootsize);
height: (32 / @rootsize);
background-color: #f7f7f7;
border-radius: (32 / @rootsize);
border: 1px solid transparent;
text-indent: (38 / @rootsize);
line-height: (32 / @rootsize);
overflow: hidden;
&::placeholder {
font-size: (12 / @rootsize);
}
}
单行文本省略
p{
width:100px;
overflow: hidden; /*超出部分隐藏*/
white-space: nowrap; /*禁止换行*/
text-overflow: ellipsis; /*省略号*/
}