css如何让自适应宽度的块居中显示
2021-07-16 11:07
标签:class 自适应 pre idt 宽度 text fixed center 网站 在父级加上 text-align: center; 虽然这个属性只对行内元素有效,但是同时把需要居中的块设置上 display: inline-block; 这样就可以把块级元素转化为拥有块级属性的行内元素,从而让text-align生效,达到自适应宽度居中显示。 css如何让自适应宽度的块居中显示 标签:class 自适应 pre idt 宽度 text fixed center 网站 原文地址:http://www.cnblogs.com/yc-web/p/7069678.html div class=‘footer‘>
ul>
li>网站首页li>
li>企业招聘li>
li>联系我们li>
li>讲师招聘li>
ul>
div>
.footer{
width: 100%;
height: 100px;
background: black;
position: fixed;
bottom: 0;
text-align: center;
}
.footer ul{
display: inline-block;
color: white;
}
.footer li{
height: 100px;
line-height: 100px;
float: left;
margin-right: 20px
}
上一篇:上传本地文件至GitHub
下一篇:c# 四则运算