我正在使用.card以下内容,并且有一段时间得到“你喜欢这个”的文字。与元素.btn-links下方的Like 和 Comment 一致。hr
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="card mx-auto mt-5" style="width:500px">
<div class="card-body">
<hr>
<div>
<button class="btn btn-link">Like</button>
<span class="text-muted" style="">You liked this.</span>
<button class="btn btn-link float-right">3 Comments</button>
</div>
</div>
</div>
我已经尝试了我能想到的一切。更改显示属性。使用边距或填充。调整字体高度。它都没有奏效。我不知道如何让它对齐,任何帮助将不胜感激。
我可能可以使用浮点数甚至 flexbox 让它工作,但这似乎太过分了,如果可能的话,我宁愿不这样做。谢谢。