Struggling to center my website no matter what I try. I experimented with different CSS properties but haven't had much luck.
margin: auto 0;
I also attempted the following:
margin-left: 50%;
margin-right: 50%;
The closest I got was aligning everything to the right, which wasn't my goal at all.
Below is the snippet of CSS that dictates the alignment of my site and other details. Any help would be greatly appreciated.
#Content {
width: 1200px;
height: 850px;
padding: 5px;
margin-left: 50%;
margin-right: 50%;
background-color: #006600;
font-size: 12px;
font-color: #000;
text-align: center;
font-style: normal;
font-family: Arial, Helvetica, sans-serif;
}