ios轉向前端進階之:html標籤居中

1.全部標籤水平居中:

行內標籤與行內-塊級標籤水平居中:在其父標籤設置:

text-align: center;

塊級標籤水平居中:在其自己設置:

margain: 0 auto;

2.全部標籤垂直居中:

行內標籤與行內-塊級標籤垂直居中:

line-height:xxx

塊級標籤垂直居中:在其自己設置:

position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
相關文章
相關標籤/搜索