Answers for "how to centrally align in html"

4

html align right

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

centering in html

<style>
  element
  {
    text-align: center;
  }
</style>
-------------------------------------------------------------------------------
style.css
element
{
	text-align: center;
}
Posted by: Guest on September-30-2020

Code answers related to "how to centrally align in html"

Browse Popular Code Answers by Language