Answers for "how to center the mainin html"

1

how to center the mainin html

<style>
  main {
    max-width: 960px;
    margin: auto;
  }
</style>
Posted by: Guest on April-03-2022
1

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 center the mainin html"

Browse Popular Code Answers by Language