div 螢幕居中的寫法

guile發表於2019-03-10
    <style type="text/css">  
    .cDiv {   
        position: absolute;         /* 絕對定位 */   
	top: 50%;                   /* 距頂部 50% */   
	left: 50%;                  /* 距左邊 50% */   
	
	height: 200px;  
	margin-top: -100px;       
	
	width: 400px;  
	margin-left: -100px;       
    }   
    </style>   


    <div class="cDiv">div 螢幕居中的方法</div>   

 

參考原文修改出來的:https://fangwei.iteye.com/blog/442628

相關文章