In this article, we will align the text content into the center by using JavaScript. We use HTML DOM style textAlign property to set the alignment of text.
The DOM style textAlign property is pretty much similar to the text-align property in the CSS, and the Dom textAlign property returns the horizontal alignment of the text in a block-level element in an HTML page and allows for changes to that alignment.
Syntax:
object.style.textAlign = "center"
The above syntax set the text alignment into the center dynamically.
Example: This example aligns the text content into the center using javascript.
HTML
<!DOCTYPE html> < html > < head > < title > How to align text content into center using JavaScript ? </ title > </ head > < body > < h1 style = "color: green;" > neveropen </ h1 > < h3 > How to align text content into center using JavaScript ? </ h3 > < p id = "content" > neveropen: A computer science portal for neveropen </ p > < button onclick = "myFunction();" > Set Alignment </ button > < script type = "text/javascript" > function myFunction() { let txt = document.getElementById("content"); txt.style.textAlign = "center"; } </ script > </ body > </ html > |
Output: