Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个标签,它的一部分需要向右对齐。
例如,如果这是文本框:
|左…………右|
如果没有简单的方法来对齐......我有一个想法,但我不确定它是否可能,但它是:
我可以通过添加每个字符的像素宽度来计算正确字符串的宽度,固定宽度的字体是理想的。有了这个,我可以计算出我需要插入的空格量,以使文本一直向右。
<div style="width:200px"> Left <div style="float:right;">Right</div> </div>