I have a main div on my page that has the attribute align="center", yet for some reason it is not aligning in the center.
for reference here is the page.
CSS:
#page{
background-color: #4C1B1B;
width:85%;
height:500px;
}
HTML:
<body>
<div id="page" align="center">
<div id="pageleft">
TEST
</div>
<div id="pageright">
</div>
</div>
</body>
Thanks in advance!
Add
margin:autoto the#pagerule instead and remove thealign="center"