html垂直居中怎么设置(html的水平居中标签)

1. 元素高度声明的情况下在父容器中居中:绝对居中法

<div class="parent">   <div class="absolute-center"></div>  </div>  .parent {   position: relative;  }  .absolute-center {   position: absolute;   margin: auto;   top: 0;   right: 0;   bottom: 0;   left: 0;   height: 70%;   width: 70%;  }  优点:  1.跨浏览器,包括 IE8-10  2.无需其他冗余标记,CSS 代码量少  3.完美支持图片居中  4.宽度高度可变,可用百分比  缺点:  1.必须声明高度

2. 负外边距:当元素宽度高度为固定值时。设置 margin-top/margin-left 为宽度高度一 半的相反数,top:50%;left:50%

<div class="parent">   <div class="negative-margin-center"></div>  </div>  .parent {   position: relative;  }  .negative-margin-center {   position: absolute;   left: 50%;   top: 50%;   margin-left: -150px;   margin-top: -150px;   height: 300px;   width: 300px;  }  优点:  良好的跨浏览器特性,兼容 IE6-7  代码量少  缺点:  不能自适应,不支持百分比尺寸和 min-/max-属性设置  内容可能溢出容器  边距大小域与 padding,box-sizing 有关

3. CSS3 Transform 居中:

<div class="parent">   <div class="transform-center"></div>  </div>  .parent {   position: relative;  }  .transform-center {   position: absolute;   left: 50%;   top: 50%;   margin: auto;   width: 50%;   -webkit-transform: translate(-50%, -50%);   -moz-transform: translate(-50%, -50%);   transform: translate(-50%, -50%);  }  优点:  内容高度可变  代码量少  缺点:  IE8 不支持  属性需要浏览器厂商前缀  可能干扰其他 transform 效果

4. table-cell 居中:

<div class="center-contner is-table">   <div class="table-cell">   <div class="center-block"></div>   </div>  </div>  .center-container.is-table {   display: table;  }  .is-table .table-cell {   display: table-cell;   vertical-align: middle;  }  .is-table .center-block {   width: 50%;   margin: 0 auto;  }  优点:  高度可变  内容溢出会将父元素撑开  跨浏览器兼容性好  缺点:  需要额外 html 标记
感谢您访问:美文云网站!本文永久链接:https://meiwenyun.com/433303.html。侵删或不良信息举报请联系邮箱:820608633@qq.com或微信:meiwenyun888。
上一篇 2024年8月23日
下一篇 2024年8月23日

相关推荐

  • 简爱经典语录摘抄 简爱经典语录

    1、我无法控制自己的眼睛,忍不住要去看他,就像口干舌燥的人明知水里有毒却还要喝一样。我本来无意去爱他,我也曾努力的掐掉爱的萌芽,但当我又见到他时,心底的爱又复活了。2、如果别人不爱…

    2024年8月12日
    23
  • 忌是什么意思 忌的组词

    关于这个问题,帮大家(bdjsc.com)整理了最优质的解答。 1、组词:顾忌、嫉忌、忌恨、避忌、忌讳、忌惮、妒忌、犯忌、戒忌、忌刻、忌日、忌口、忌嘴、畏忌、横行无忌、毫无顾忌、肆…

    2024年8月10日
    22
  • 电脑键盘常用的快捷键是什么(实用的快捷方式大全)

    我们现在大多数工作都需要使用电脑,掌握简单的电脑知识,可以更好的提高操作效率,熟能生巧是没错,但还有一个方法就是使用快捷键。 办公室文员必备技能知识;基本要求:打字快,会offic…

    2023年5月19日
    145
  • 花火经典语录大全(电影花火里的经典台词)

    那些留在青春里的记忆,仿佛一株夏日里盛放的青色藤蔓,触手冰凉。 你不明白,喜欢一个人是宿命,即使注定是劫难,也在劫难逃。 女孩子啊,还是要有那种近乎自虐的矜持 这个世界上最强大的就…

    2024年8月16日
    14
  • 中国历史上第一个皇帝叫什么名字 中国历史上第一个皇帝是谁

    1、秦始皇是中国历史上第一个皇帝。 2、秦始皇嬴政(公元前259年—公元前210年),出生于赵国首都邯郸。秦庄襄王之子,十三岁即王位,三十九岁称皇帝,在位三十七年。 3、中国历史上…

    2024年8月5日
    20
  • 重视冬季渔塘白云病的发生

    近日笔者接二连三地接到陕西合阳、河南商丘、山东肥城等地渔民的求救电话,得知以上地区有不少精养四大家鱼的池塘发生大面积死鱼现象,其症状相同,且死亡数量大,损失严重。为此山西黄河鱼病研…

    2022年12月30日
    180
分享本页
返回顶部