css

//图片重叠
 
//div居中
 
div{
width: 74%; 
text-align: center; 
margin: 0 auto; 
 
//清除、谷歌记住密码后文本框的默认样式
 
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #fff inset;
}
input{
    background: #fff;
    border: 1px solid #ddd;
    outline:none;
}
 
//多余文字省略号代替
 单行
 
width: 245px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
多行
 

overflow : hidden;

 

text-overflow: ellipsis;

display: -webkit-box;

 

-webkit-line-clamp: 2;

-webkit-box-orient: vertical;

 

 

//清楚苹果浏览器按钮默认样式

 

input,button { -webkit-appearance: none;border-radius: 0;}

posted @ 2016-03-16 21:15  vip95595  阅读(117)  评论(0编辑  收藏  举报