Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

how to change the postion of text in html

<!-- In html you can use the text-align attributte for thext-->
<!--Here is an example-->
<html> 
  <body> 
    <style> 
    	.text {
          text-align: center;
      }
    </style>
    <div class='text'> This is an example of text position change</div>
  </body> 
</html> 
 
PREVIOUS NEXT
Tagged: #change #postion #text #html
ADD COMMENT
Topic
Name
4+8 =