MichiganRon
MIS
I have some code that's actually displaying correctly in IE 6.0 but not in NS 7.1. I need to center a block-level element (
tag) on a page. Here is the CSS for that particular div tag:
This is the parent element of others on the page. It is a child to
. There is no CSS formatting associated with the
tag.
The "pageContainer" element is properly centered in IE 6.0, but will not center in NS 7.1.
What am I doing wrong? Or, is this a problem with Netscape?
-Ron
-We are all given the same deck of cards, it's how we play the hand we are dealt which makes us who we are.
Code:
<div>
Code:
#pageContainer {
position: relative;
padding: 0px 75px 0px 75px;
width: 700px;
text-align: center;
margin-right: auto;
margin-left: auto;
}
This is the parent element of others on the page. It is a child to
Code:
<body>
Code:
<body>
The "pageContainer" element is properly centered in IE 6.0, but will not center in NS 7.1.
What am I doing wrong? Or, is this a problem with Netscape?
-Ron
-We are all given the same deck of cards, it's how we play the hand we are dealt which makes us who we are.