You have a wrapper div and an inner DIV:
<div id="wrapper">
<div id="inner">
<!-- your rubbish here -->
</div>
</div>
/* for IE */
div#wrapper {
text-align: center;
}
div#inner {
margin: 0 auto; /* this centers the DIV */
width: 30%; /* whatever */
}
3 comments:
I have been visiting various blogs for my term papers writing research. I have found your blog to be quite useful. Keep updating your blog with valuable information... Regards
text-align:center doesn't even work in IE. I just tried it with IE8.
This helped me, thanks.
Post a Comment