_______________________________________________
| |
| Picture |
| |
|_______________________________________________|
I am trying to position the above rectangle in the center of a page. I have created it using a div tag and the following code:
.rectangle
{
width: 73.3%;
margin:0 50 0 0;
border-top:1px solid #46464f;
border-bottom:1px solid #282832;
border-left:1px solid #282832;
border-right:1px solid #282832;
border-bottom-width:medium;
border-left-width:medium;
border-right-width:medium;
border-top-width:medium;
}
When I use
<div class="rectangle" align="center">
, it does not center the rectangle as expected.