How to make Centering a Website in simple CSS steps?
<body> <div id=”page-wrap”> <!– all websites HTML here –> </div> </body> #page-wrap { width: 800px; margin: 0 auto; }
<body> <div id=”page-wrap”> <!– all websites HTML here –> </div> </body> #page-wrap { width: 800px; margin: 0 auto; }
More