gpt4 book ai didi

html - 如何使用 CSS 使 HTML 元素出现在垂直线上?

转载 作者:太空宇宙 更新时间:2023-11-03 20:39:38 25 4
gpt4 key购买 nike

问题图片:

enter image description here

如何使用 CSS 从左侧转到右侧?

最佳答案

您可以使用表格:

<table>
<tr>
<td>You own</td>
<td>20</td>
</tr>
<tr>
<td>Price</td>
<td>20</td>
</tr>
<tr>
<td>BPS</td>
<td>0.50</td>
</tr>
</table>

或 float div:

<div style="display:inline-block;">
<div style="float:left; width:150px;">You own</div>
<div style="float:left;">20</div>
</div>

<div style="display:inline-block;">
<div style="float:left; width:150px;">Price</div>
<div style="float:left;">20</div>
</div>

<div style="display:inline-block;">
<div style="float:left; width:150px;">BPS</div>
<div style="float:left;">0.50</div>
</div>

关于html - 如何使用 CSS 使 HTML 元素出现在垂直线上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27734340/

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