torkleyy
0
Q:

html how to center text

<div style="text-align:center">Dieser Text wird zentriert.
<p>Ebenso dieser Paragraph.</p></div>
1
<p style="text-align:center;">Centered paragraph.</p>
0
To text align all yuo have to do this:
<style>
  .yournameforclass {
    background: #fff; //which does not have to be there
    text-align: center;
    width: 100%;  //all of this can be varied. Text align can be used in these forms: left, which is to the left, right, to the right of the screen
    height: 300px;
  }
1
<center>Dieser Text wird zentriert.
<p>Ebenso dieser Paragraph.</p></center>
1
    text-align: center;
0
With the aid of internal or external CSS you can center text with:

text-align: center;
0
<p><center>YourText</center></p>
-1

New to Communities?

Join the community