Answers for "how to place the text in center in html"

CSS
6

how to center text in html

text-align: center;
Posted by: Guest on July-28-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 place the text in center in html"

Browse Popular Code Answers by Language