gpt4 book ai didi

css - 使
  • 列表居中对齐

转载 作者:行者123 更新时间:2023-11-28 11:18:15 25 4
gpt4 key购买 nike

我正在将动态类“float-left”、“float-right”和“float-center”应用于列表,以将它们正确定位在我想要的位置,但由于没有 float:center;我尝试了边距,内联 block ; text-align:center..但没有任何作用..请检查这个 fiddle

 ul.tabs .center {
margin:0 auto;
text-align:center;
overflow:hidden;
}

.float-center li{
display:inline-block;
}

http://jsfiddle.net/443E2/

最佳答案

使用以下代码:

.float-center {
text-align: center;
}
.tabs.float-center li {
display: inline-block;
float; none;
margin-left: -4px; /* Fix for white spaces between li while using inline-block */
}
.tabs.float-center li:last-child {
border-right: 1px solid #999;
}

查看更新 jsfiddler

关于css - 使 <ul><li> 列表居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21660024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com