css設定居中對齊的方法:1、透過「text-align:center」或「margin:垂直auto;」實現水平居中;2、透過「line-height」實現垂直居中;3、透過「彈性佈局」實現水平垂直居中等等。
本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。
css-居中對齊方法
僅對文字、圖片、按鈕等行內元素有效(display設定為inline或inline-block等)進行水平居中
僅水平居中,且對浮動元素定位無效
.father{ width:500px; height:200px; background-color::#f98769; overflow:hidden;//不可缺少否则margin-top不生效 } .son{ width: 100px; height: 100px; margin:50px auto ; background-color: #ff0000; }
line-height=height ,僅對一行文字有效
對td/th的align='center'和valign='middle'兩個屬性可以水平和垂直居中
.father{display:flex;justity-content:center;align-items:center;}.father{display:flex;flex-direction:column;//改变主轴为cross axisjustity-content:center;}
對於那些不是表格的元素,我們可以透過display:table-cell 來把它模擬成一個表格單元格
.father{ height:300px; background:#ccc; display:table-cell; /*IE8以上及Chrome、Firefox*/ vertical-align:middle; /*IE8以上及Chrome、Firefox*/ text-align:center; } .son{ display:inline-block;//或是inline }
奇淫技巧——子絕父相(已知子元素寬高) ——水平、垂直居中
.father{position:relative;}.son{//m、n为子盒子宽、高的一半position:absolute;left:50%;top:50%;margin-left:-mpx;margin-top:-npx;
未知子元素寬高-水平、垂直居中
.father { position:relative;}.son { position:absolute; top:50%; left:50%: transform:translate(-50%,-50%) /*单独设置transform:translateY(-50%);*/}
偽元素法—— 垂直居中
.father{ position: relative; } .father::before{ content: " "; display: inline-block; height: 100%; width: 1%; vertical-align: middle; } .son{ display: inline-block; vertical-align: middle; }
更多詳細的HTML/css知識,請造訪css影片教學欄位!
#以上是css怎麼設定居中對齊的詳細內容。更多資訊請關注PHP中文網其他相關文章!