中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
临桂县| 财经| 苍山县| 阿克苏市| 张家口市| 余干县| 鄢陵县| 临沭县| 虹口区| 扎赉特旗| 油尖旺区| 平乐县| 石狮市| 黄山市| 新竹市| 宁国市| 兴文县| 浙江省| 开江县| 沙雅县| 满洲里市| 苍梧县| 天柱县| 东乡| 凤阳县| 北安市| 嵊州市| 兴和县| 淳安县| 酉阳| 满城县| 赞皇县| 行唐县| 探索| 茶陵县| 沂水县| 大厂| 来宾市| 万载县| 平乡县| 湘乡市|