css加载动画

加载动画css居中显示

<style type="text/css"> 
.log { 
position:absolute; /*绝对定位*/ 
top:50%; /*距顶部50%*/ 
left:50%; 
margin:-100px 0 0 -150px; /*设定这个div的margin-top的负值为自身的高度的一半,margin-left的值也是自身的宽度的一半的负值.*/ 
width:300px; /*宽为400,那么margin-top为-200px*/ 
height:200px; /*高为200那么margin-left为-100px;*/ 
z-index:99; /*浮动在最上层 */ 
} 
</style> 

猜你喜欢

转载自www.cnblogs.com/chenweichu/p/9091210.html