如何使用 JavaScript 将文本内容对齐到中心?
我们可以通过操作元素的 CSS 属性,使用 JavaScript 将文本内容对齐到中心。这可以通过选择元素并将 "text-align" 属性设置为 "center" 来完成。此外,我们还可以使用 "margin" 属性来调整元素的位置。
方法
有多种方法可以使用 JavaScript 将文本内容居中 −
最常见的方法是在 CSS 样式表中将text-align属性设置为"center"。
另一种方法是使用<center>标记。最后,你可以使用 margin 属性将文本内容居中。
示例
下面我们将看到仅使用 JavaScript 将文本居中的代码。
<html> <head> <title>JavaScript - Center Text</title> </head> <body> <script> const centerText = () => { var centerText = document.createElement('p'); centerText.innerText = 'Center Text'; centerText.style.color = 'black'; centerText.style.textAlign = 'center'; document.body.appendChild(centerText); } centerText(); </script> </body> </html>
示例
让我们来看另一个将文本内容对齐到中心位置的示例 −
<!DOCTYPE html> <html> <head> <title> Align Text </title> </head> <body> <h1>Demo Heading</h1> <p id="demo"> This text will be center aligned </p> <button onclick="demoFunc();">Align</button> <script> function demoFunc() { let txt = document.getElementById("demo"); txt.style.textAlign = "center"; } </script> </body> </html>
广告