Answers for "html how to move text up"

CSS
8

how to move text up and down in html

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

how to move text up and down in html

<html>
   <head>
   </head>

   <body>
      <div style = "position:relative; left:80px; top:2px; background-color:yellow;">
         This div has relative positioning.
      </div>
   </body>
</html>
Posted by: Guest on May-17-2020
0

how to make text move in html

<marquee>moving text</marquee>
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language