My main div on the page has the attribute align="center"
, but it does not seem to align in the center.
If you'd like to see the page for reference, click here.
This is the CSS:
#page{
background-color: #4C1B1B;
width:85%;
height:500px;
}
And here is the HTML:
<body>
<div id="page" align="center">
<div id="pageleft">
TEST
</div>
<div id="pageright">
</div>
</div>
</body>
Thank you in advance!