Answers for "how to centre 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

Browse Popular Code Answers by Language