我有以下HTML结构:
.parent{
border: 1px solid;
width: 60%;
}
.child2{
margin: 0 auto;
}
<div class="parent">
<a href="#" class="child1">it should stay in the left side</a>
<br>
<a href="#" class="child2">this should be center</a>
</div>
我需要居中a.child2
。我可以将text-align: center
添加到div.parent
来执行此操作。但在这种情况下,a.child1
也会集中,我不想。
正如您所看到的,我还将margin: 0 auto;
添加到了a.child2
,但它仍然位于左侧。
总结一下,如何在a.child2
左侧保持a.child1
为中心?
答案 0 :(得分:3)
将display
属性设为block
,将其显示在不同的行中。然后将text-align属性应用于.child2
以将文本对齐到中心。
.parent {
border: 1px solid;
width: 60%;
}
.parent a {
display: block;
}
.child2 {
text-align: center;
}
&#13;
<div class="parent">
<a href="#" class="child1">it should stay in the left side</a>
<a href="#" class="child2">this should be center</a>
</div>
&#13;
答案 1 :(得分:3)
将.child2
设为display:table
.parent{
border: 1px solid;
width: 60%;
}
.child2{
margin:auto;
display:table
}
&#13;
<div class="parent">
<a href="#" class="child1">it should stay in the left side</a>
<br>
<a href="#" class="child2">this should be center</a>
</div>
&#13;
答案 2 :(得分:1)
您可以使用已经存在的display: table
和margin: 0 auto
进行对中。
.parent{
border: 1px solid;
width: 60%;
}
.child2{
display: table;
margin: 0 auto;
}
<div class="parent">
<a href="#" class="child1">it should stay in the left side</a>
<br>
<a href="#" class="child2">this should be center</a>
</div>
答案 3 :(得分:1)
要使margin: 0 auto
工作,您需要记住的事情很少。
display: block
width
必须不是自动的。因此,在您的情况下,只有2件事情遗失 - width
&amp; display: block
(因为<a>
默认为display:inline-block
)。这应该修复
.child2{
margin: 0 auto;
width:40%;
display: block;
}
答案 4 :(得分:0)
将这些行放在p
标记中,并将text-align: center
分配给第二个:
.parent{
border: 1px solid;
width: 60%;
}
.child2{
text-align: center;
}
<div class="parent">
<p class="child1">
<a href="#" >it should stay in the left side</a>
</p>
<p class="child2">
<a href="#">this should be center</a>
</p>
</div>
答案 5 :(得分:0)
如果您不介意,可以将child2显示为内嵌块和宽度100%,然后您可以将其内容集中。
.parent{
border: 1px solid;
width: 60%;
}
.child2{
width:100%;
text-align:center;
display: inline-block;
}
<div class="parent">
<a href="#" class="child1">it should stay in the left side</a>
<br>
<a href="#" class="child2">this should be center</a>
</div>