首 页 行业热点 新车 试驾评测 养车用车 车型库

css怎么让这几个图标居中对齐?

发布网友 发布时间:2022-04-21 13:30

我来回答

2个回答

热心网友 时间:2022-07-13 03:12

text-align: center 只能用于行内元素的水平居中,用在块级元素或容器中是无效的

试试这样:

<div class="metro-layout horizontal" style="margin: 0 auto;">

追问这个我也试了 不管用

追答这要看过你的完整代码(尤其是css文件)才知道。居中的方法很多种的,比如定位、位移、边距、盒子等等,具体要根据你已有的样式(比如metro-layout和horizontal这两个类的样式)而定。

热心网友 时间:2022-07-13 03:12

<div class="center></div>
.center{
width: 300px;
height: 300px;
background: black;
position: absolute;
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -150px;
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com