常用css速查
1.元素背影
box-shadow: 0 0 16px 2px #ddd;
2. 两端对齐
text-align:justify;text-justify:inter-ideogra
3. ie6: position:fixed
.fixed-top /* position fixed Top */{position:fixed;bottom:auto;top:0; }
* html .fixed-top /* IE6 position fixed Top */{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop));}
*html{background-image:url(about:blank);background-attachment:fixed;}
4. min-height: 最小高度兼容代码
.minheight500{min-height:500px;height:auto !important;height:500px;overflow:visible;}
5.input里面的输入光标大小
给input的height设定一个较小的高度,然后用padding去填充,基本上可以解决所有浏览器的问题
input{height: 16px;padding: 4px 0px;font-size: 12px;}