-2

How can I do it that all sentences are in the middle

like :

enter image description here

but it should be text not horizontal lines ^^

Spectric
  • 30,714
  • 6
  • 20
  • 43

3 Answers3

2

Give the property text-align: center to the element containing the text.

MrSandyWilly
  • 388
  • 1
  • 3
  • 14
2

Use text-align: center;

Link: https://developer.mozilla.org/en-US/docs/Web/CSS/text-align

<div style="text-align:center; width: 150px;">
  veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
</div>
naveen
  • 53,448
  • 46
  • 161
  • 251
1

Try doing this example (remember to replace text in div with your own).

<div style="text-align: center; width=200px">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut eu sapien vitae sem blandit pulvinar.</div>