1

How can i make text center but the first letter start at the same place?

from this

                                  text 1
                                text text
                             text 2 text text

to this

                             text 1
                             text text
                             text 2 text text
cton453
  • 1
  • 6

2 Answers2

4

Try this

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


<div class="center">
       Multiline text
       ight here
    </div>
s.lenders
  • 1,119
  • 6
  • 21
0

So u should not use align center. but instead of one div containing your text , you shoud have 2 or 3 divs(that would be like columns), your text would be displayed normally inside, aligned left, like u want

mlwacosmos
  • 4,391
  • 16
  • 66
  • 114