move text right css code example

Example 1: css text align justify

div {
  text-align: justify;
  text-justify: inter-word;
}

Example 2: css text align right

body {
  text-align: right;
}

Example 3: how to move anything left in css

<html>
   <head>
   </head>

   <body>
      <div style = "position:relative; left:80px; top:2px; background-color:yellow;">
         This div has relative positioning.
      </div>
   </body>
</html>

Example 4: how to push text to the right css

padding-left: 3px;

Example 5: css text align left

body {
  text-align: left;
}

Example 6: text align justify

text-align: justify;

Tags:

Css Example