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.
是否有任何技巧(或非技巧)可以将左调整的文本对齐到它上面的中心调整的句子恰好开始的地方?上面的句子长度在哪里无法预测?
编辑:重申问题:我有一行居中的文本。该行的第一个字母落在屏幕上的某个特定位置,具体取决于该行的长度。
我在它下面有第二行。我希望该行的第一个字母与上一行的第一个字母对齐。简单地将其居中显然是行不通的,因为长度可能不同,也可能不同。
不要将文本居中,只需使用
p{ margin-left: 100px/*Or whatever number you want*/ }
然后所有文本都将在行中
我认为你应该使用 text-align css 属性:
text-align:left;