I want to center my element but when I use
margin-left: auto;
margin-right: auto;
it doesn't work!
this is my html
<section id="t">
<article class="tc">Hi</article>
<article class="tc">Hi agian!</article>
</section>
and this is my css:
#t {
margin-left: auto;
margin-right: auto;
margin-top:10px;
}
.tc {
margin-left: auto;
margin-right: auto;
width: 600px;
display: inline;
border-style: solid;
border-width:1px;
}
and you can see the result here.
Can anybody help me?