css技巧
1. 透明度的兼容写法:
filter: Alpha(opacity=50);
-moz-opacity:0.5;
opacity: 0.5;
2.超出不换行,加省略号的方法:
overflow:hidden; text-overflow:ellipsis; /*超出加省略号*/ word-break:keep-all; white-space:nowrap; /*不换行*/
3.设置输入框的:placeholder属性的颜色:
::-webkit-input-placeholder{ color:white !important; font-weight: 100; } ::-moz-placeholder{ color:white !important; font-weight: 100; } :-ms-placeholder{ color:white !important; font-weight: 100; }
4.