1

我怎样才能使文本中心,但第一个字母从同一个地方开始?

由此

                                  text 1
                                text text
                             text 2 text text

对此

                             text 1
                             text text
                             text 2 text text
4

2 回答 2

4

试试这个

<style>
   .center{
      margin: auto auto;
      width: 250px;
   }
</style>


<div class="center">
       Multiline text
       ight here
    </div>
于 2013-03-07T15:04:00.093 回答
0

所以你不应该使用对齐中心。但不是一个 div 包含您的文本,您应该有 2 或 3 个 div(就像列),您的文本将正常显示在内部,左对齐,就像你想要的

于 2013-03-07T15:34:26.497 回答