css怎么设置居中对齐
程序员文章站
2022-03-06 22:49:21
...
css设置居中对齐的方法:1、通过“text-align:center”或“margin:垂直 auto;”实现水平居中;2、通过“line-height”实现垂直居中;3、通过“弹性布局”实现水平垂直居中等等。
本文操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。
css——居中对齐方法
text-align:center —— 水平居中
仅对文字、图片、按钮等行内元素有效(display设置为inline或inline-block等)进行水平居中
margin:垂直 auto; —— 水平居中
仅水平居中,且对浮动元素定位无效
.father{ width:500px; height:200px; background-color::#f98769; overflow:hidden;//不可缺少否则margin-top不生效 } .son{ width: 100px; height: 100px; margin:50px auto ; background-color: #ff0000; }
line-height —— 垂直居中
line-height=height ,仅对一行文字有效
使用表格 —— 水平、垂直居中
对td/th的align=‘center’和valign=‘middle’两属性可以水平和垂直居中
弹性布局 —— 水平、垂直居中
.father{display:flex;justity-content:center;align-items:center;}.father{display:flex;flex-direction:column;//改变主轴为cross axisjustity-content:center;}
使用display:table-cell —— 水平、垂直居中
对于那些不是表格的元素,我们可以通过display:table-cell 来把它模拟成一个表格单元格
.father{ height:300px; background:#ccc; display:table-cell; /*IE8以上及Chrome、Firefox*/ vertical-align:middle; /*IE8以上及Chrome、Firefox*/ text-align:center; } .son{ display:inline-block;//或是inline }
奇淫技巧——子绝父相(已知子元素宽高) —— 水平、垂直居中
.father{position:relative;}.son{//m、n为子盒子宽、高的一半position:absolute;left:50%;top:50%;margin-left:-mpx;margin-top:-npx;
未知子元素宽高 —— 水平、垂直居中
.father { position:relative;}.son { position:absolute; top:50%; left:50%: transform:translate(-50%,-50%) /*单独设置transform:translateY(-50%);*/}
伪元素法 —— 垂直居中
.father{ position: relative; } .father::before{ content: " "; display: inline-block; height: 100%; width: 1%; vertical-align: middle; } .son{ display: inline-block; vertical-align: middle; }
更多详细的HTML/css知识,请访问css视频教程栏目!
以上就是css怎么设置居中对齐的详细内容,更多请关注其它相关文章!
上一篇: css有什么作用
推荐阅读
-
织梦无法放在二级目录 放在二级目录之后 所有的图片 还有css文件全都不显示了 哪位高手知道怎么回事 咋设置
-
CSDN-markdown编辑器怎么设置图片大小 图片居中
-
js获取input长度并根据页面宽度设置其大小及居中对齐_javascript技巧
-
js获取input长度并根据页面宽度设置其大小及居中对齐_javascript技巧
-
不知大家遇到过这种问题么,一个层宽度设为100%,并设置背景图片,在浏览器中浏览,缩小窗口到滚动条出现,然后拖动滚动条到右侧,右侧的区域变成空白,怎么解决?_html/css_WEB-ITnose
-
总结利用css设置元素垂直居中
-
css怎么设置文本框宽度
-
css怎么设置a标签颜色
-
css怎么设置宽为100vw
-
css怎么设置相对定位和绝对定位