Answers for "text align center"

8

html center text

<div style="text-align:center">Dieser Text wird zentriert.
<p>Ebenso dieser Paragraph.</p></div>
Posted by: Guest on July-02-2020
1

how to align text in html

<!-- Code by Scratchy -->
<!-- Twitter: @S_cratchy-->

<!-- Solution 1 -->
<p>
  This is some cool text in html, wow such cool text
</p>

<!-- Solution 2 -->
<font style="text-align:right;"> This text is on the right</font>
<font style="text-align:center;"> This text is in the center</font>
<font style="text-align:left;"> This text is on the left</font>
Posted by: Guest on February-03-2020
7

text align center

text-align: center;
Posted by: Guest on July-28-2020
6

text align css

p{
    text-align:center;/*values: center, left, right, etc...*/
}
Posted by: Guest on February-23-2020
1

css text align center

body {
  text-align: center;
}
Posted by: Guest on April-09-2020
1

css text align right

body {
  text-align: right;
}
Posted by: Guest on April-09-2020

Browse Popular Code Answers by Language