欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

html不用class怎么居中?

錢多多2年前16瀏覽0評論

第一種:將元素通過display:inline-block轉(zhuǎn)化為行內(nèi)塊元素居中,例如:

.box{width:500px;height:500px;box-shadow:005px#000;text-align:center;font-size:0;}

.box.zi{width:120px;height:100px;background:#0f0;display:inline-block;vertical-align:middle;}

.box:after{content:"";display:inline-block;height:100%;vertical-align:middle;}

第二種:用定位的方式將之移動到位置,例如:

.box{width:500px;height:500px;box-shadow:005px#000;position:relative;}

.box.zi{width:120px;height:100px;background:#0f0;

position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;}

第三種:類似第二中只不過通過百分比調(diào)整位置,例如

.box{width:500px;height:500px;box-shadow:005px#000;position:relative;}

.box.zi{width:120px;height:100px;background:#0f0;position:absolute;left:50%;top:50%;margin:-50px00-60px;}

第四種:類似第三種,但是在調(diào)整回到中心位置時使用transform:translate(,)進行調(diào)整,例如

.box{width:500px;height:500px;box-shadow:005px#000;position:relative;}

.box.zi{width:120px;height:100px;background:#0f0;

position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);}

第五種:使用彈性盒(display:flex),例如

.box{width:500px;height:500px;box-shadow:005px#000;display:flex;justify-content:center;align-items:center;}

.box.zi{width:120px;height:100px;background:#0f0;}

以上最常用的五種方式,除此之外還有很多方式,根據(jù)每個人的習慣不同個人用法不同,