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