I believe there was a site posted before in a post that will allow you to test render a page in different versions of browsers... maybe said person will share again... if not just search google
and to center your content within the page
you need to center the body and then left align the content text
Code:
<style type="text/css">
<!--
body {
width: 800px;
margin: 0 auto;
text-align: center;
}
#container {
text-align: left;
}
-->
</style>
Also, how do make lists not show the bullets in IE?
add this to your your css file
Code:
<style type="text/css">
<!--
ul li {
list-style: none;
}
-->
</style>
Bookmarks