gpt4 book ai didi

css - 如何沿轴对齐文本?

转载 作者:太空宇宙 更新时间:2023-11-04 14:41:20 24 4
gpt4 key购买 nike

我想让左列右对齐,右列左对齐,这样它们就沿着中心轴排列,如下所示:

 16 January 2013 | Here is a line of text. 
26 December 2013 | Another line of text here.
4 May 2011 | Here is something else.

HTML 在 <span> 中s,像这样:

<div class="line"> 
<span class="date">16 January 2013</span> <span class="text">Here is a line of text.</span>
</div>

我一直在尝试使用 .line { display: table-row; } 来做到这一点和 .line span { display: table-cell; }但它似乎不起作用。

最佳答案

试试这个..

<div class="line"> 
<div style="width:50%;float:left;text-align:right;" class="date">16 January 2013</div>
<div style="width:50%;float:left;text-align:left;" class="text">Here is a line of text.</div>
</div>

div-s 适合你吗? :D

关于css - 如何沿轴对齐文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18301169/

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