例如 一個父div(w:100%;h:400px)中有一個子div(w:100px;100px;)。讓其上下左右居中。css
利用表格單元格的居中屬性。html
<style> * {margin: 0; padding: 0; box-sizing: border-box;} .table {display: table; width: 100%;} .father {display: table-cell; vertical-align: middle;} .son {margin: auto;} </style>
<body>
<div class="table" >
<div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
<div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
</div>
</div>
</body>
複製代碼
注:前端
width:100%;
當父div的行高等於自身高度時,內部的行內元素會上下居中顯示。行內塊沒有固定高度時也會上下居中顯示。經過文本居中屬性text-align:center
,能夠使內部行內元素或行內塊元素左右居中顯示。web
<style> * {margin: 0; padding: 0; box-sizing: border-box;} .father {line-height: 500px; text-align: center; font-size: 0;} .son { display: inline-block; /* display: inline-flex; display: inline-grid; display: inline-table; */ } </style>
<body>
<div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
<div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
</div>
</body>
複製代碼
注: 行高若是設置爲當前父div的高度(400px)的話,有固定高度的子div並不會居中顯示的,問題出在瀏覽器默認將其當作文本居中的,即把它當作了一段文本(chrome默認font-size:16px;hight:21px)進行居中,沒把它當作高度100px進行居中。因此須要對父div的line-height
進行調整。以font-size:0
(對應的字體高度爲0)爲例子,則須要line-height增長一個子div的高度(400px + 100px;)。chrome
利用定位屬性(top、left、right、bottom)百分比的模式。若爲100%,則表明偏移的長度爲父div的高度(寬度)的100%。瀏覽器
top:50%;margin-top:-h/2;
或是 bottom:50%;margin-bottom:-h/2;
;left:50%;margin-left:-w/2
或是 right:50%;margin-right:-w/2
;<style> * {margin: 0; padding: 0; box-sizing: border-box;} .father {position: relative;} .son {position: absolute;bottom:50%;margin-bottom: -50px;left: 50%;margin-left: -50px; } </style>
<body>
<div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
<div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
</div>
</body>
複製代碼
定位屬性top和bottom(或是left和right)值分別設置爲0,但子div有固定高度(寬度),並不能達到上下(左右)間距爲0,此時給子div設置margin:auto會使它居中顯示。字體
top:0;bottom:0;margin-top:auto;margin-bottom:auto
left:0;right:0;margin-left:auto;margin-right:auto
<style> * {margin: 0; padding: 0; box-sizing: border-box;} .father {position: relative;} .son {position: absolute; top: 0; bottom:0; left: 0; right: 0; margin: auto} </style>
<body>
<div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
<div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
</div>
</body>
複製代碼
彈性盒子,自帶的一個居中功能flex
<style> * {margin: 0; padding: 0; box-sizing: border-box;} .father {display: flex; align-items: center} .son {margin: auto} </style>
<body>
<div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
<div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
</div>
</body>
複製代碼
方法二和方法三兼容性要比其它好些.net