11、文字变模糊处理: 2*{ 3 cursor: none!important; 4} 5 6p { 7 color: transparent; 8 text-shadow: #111 0 0 5px; 9}
2、DIV上下左右居中
1/* 上下居中 */ 2 position: absolute; 3 top: 50%; 4 left: 50%; 5 margin: -130px 0 0 -225px; /*第一个参数 -130px 是DIV高度的一半,第四个参数 -255px是DIV宽度的一半*/ 6/*左右居中*/ 7 margin:0 auto;
3、DIV圆角处理
1/*圆角*/ 2 border-radius: 5px 6px 7px 8px;
4、背景透明
1/*背景透明*/ 2 zoom:1 ; 3 filter:alpha(opacity=30); 4 -moz-opacity:0.8; opacity:0.8;