input,button,textarea去掉默认样式
textarea{
resize: none;
overflow: auto;
}
input{
background:none;
outline:none;
border:0px;
box-shadow: none;
}
button{
}
单行省略号,多行省略号
//单行
overflow : hidden;
text-overflow: ellipsis;
white-space: nowrap;
//多行
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
网友评论