91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

css中div水平垂直居中的方式有哪些

css
小億
98
2023-08-03 12:32:42
欄目: 編程語言

在CSS中有多種方式可以實現div水平垂直居中的效果,以下是常見的幾種方式:

  1. 使用flex布局:
.container {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
  1. 使用position和transform屬性:
.container {
position: relative;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
  1. 使用position和margin屬性:
.container {
position: relative;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
margin-left: -50%; /* 水平居中 */
margin-top: -50%; /* 垂直居中 */
}
  1. 使用display: table和display: table-cell:
.container {
display: table;
width: 100%;
height: 100%;
}
.centered {
display: table-cell;
text-align: center; /* 水平居中 */
vertical-align: middle; /* 垂直居中 */
}

注意:以上方式中的.container為包裹div的父元素,.centered為要居中的div。可以根據實際需要選擇適合的方式。

0
龙门县| 鸡泽县| 墨脱县| 西峡县| 雷山县| 潜江市| 扎赉特旗| 丹棱县| 耒阳市| 武川县| 磴口县| 南宁市| 宽城| 垦利县| 拜泉县| 铜梁县| 阳信县| 筠连县| 噶尔县| 迭部县| 津南区| 舒城县| 福清市| 建宁县| 富锦市| 莱阳市| 高碑店市| 房产| 宜州市| 霍山县| 磴口县| 万山特区| 鹤山市| 临泉县| 平定县| 定日县| 平度市| 于田县| 舒兰市| 鹤庆县| 潞城市|