gpt4 book ai didi

html - 在容器中居中 ul

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

我这里有一个 jsfiddle - http://jsfiddle.net/dpynebnf/

非常简单,我只是想让 ul 在它的容器中居中。

我不想使用 text-align: center;因为我仍然希望文本左对齐,但我希望整个 block 居中

    <div class="container">

<div class="row">

<div class="col-sm-12 col">


<ul>

<li>
<h3>Sone Title</h3>
<p>Some text some text some text some text some text some text </p>
</li>


<li>
<h3>Sone Title</h3>
<p>Some text some text some text some text some text some text </p>
</li>


<li>
<h3>Sone Title</h3>
<p>Some text some text some text some text some text some text </p>
</li>


<li>
<h3>Sone Title</h3>
<p>Some text some text some text some text some text some text </p>
</li>


</ul>

</div>

<!--<div class="col-sm-1"></div>-->

</div>

</div>

最佳答案

保留 text-align: center 并使用 text-align: left 在子元素中覆盖它:

.col {
background: blue;
text-align: center;
}
ul {
border: 1px solid red;
color: white;
text-align: left;
display: inline-block;
list-style: none;
margin: 0 auto;
}

http://jsfiddle.net/dpynebnf/3/

也许您正在寻找display: table

ul {
border: 1px solid red;
color: white;
display: table;
list-style: none;
margin: 0 auto;
}

http://jsfiddle.net/dpynebnf/1/

关于html - 在容器中居中 ul,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26994382/

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