Answers for "align text javascript"

2

text align-center js

objetJavasript.style.textAlign = "center";
objetJavasript.style.textAlign = "right;
objetJavasript.style.textAlign = "justify;
alert(objetJavasript.style.textAlign);
Posted by: Guest on April-04-2020
2

css text align right

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

text align in javascript

document.getElementById("demo").style.textAlign = "left|right|center|justify|initial|inherit"; 

// from w3school
Posted by: Guest on June-13-2021

Browse Popular Code Answers by Language