Answers for "horizontal text align"

24

center with css

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on January-03-2020
4

html align right

<p style="text-align:right;">Example</p>
Posted by: Guest on September-16-2020

Code answers related to "horizontal text align"

Browse Popular Code Answers by Language