Advertisement

04.20.2007 at 07:15AM PDT, ID: 22523841
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.2

How to center with css for IE6 and IE7?

Asked by coderen in Web Development, Cascading Style Sheets (CSS), Internet Explorer Web Browser

Tags: , , , ,

How to center with css for IE6 and IE7?
The following code works fine on "Safari" (MAC browser) and  "Mozilla firefox"(PC).
 <html>
<head>
<style type="text/css">
div.centerdiv {
                   position: absolute;
       margin-left: auto;
       margin-right: auto;
       left: 0;
       right: 0;
       width: 615px;
       height: 295px;
}
div.lefttop
{
      position:absolute;
      left:0px;
      top:0px;
      width:160px;
      height:80px;
      background-color: #00ff00;
}
div.leftbottom
{
      position:absolute;
      left:0px;
      top:80px;
      width:160px;
      height:215px;
      background-color: yellow;
}
div.righttop
{
      position:absolute;
      left:160px;
      top:0px;
      width:455px;
      height:45px;
      background-color: #ff00ff;
}
div.rightbottom
{
      position:absolute;
      left:160px;
      top:45px;
      width:455px;
      height:250px;
      background-color: #0000ff;
}
</style>
</head>
<body>
<div align="center" class="centerdiv">
      <div class="lefttop">
            lefttop
      </div>
      <div class="leftbottom">
            leftbottom
      </div>
      <div class="righttop">
            righttop
      </div>
      <div class="rightbottom">
            rightbottom
      </div>
</div>
</body>
</html>

But it does not work with IE6 and IE7
I tried already:
adding this line above the <html> tag
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
but it doesn't work.

I also tried
text-align: center;
But this does not work either.

Does someone know how to center in IE6 and IE7?Start Free Trial
[+][-]04.20.2007 at 07:43AM PDT, ID: 18946782

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Web Development, Cascading Style Sheets (CSS), Internet Explorer Web Browser
Tags: ie7, center, div, css, ie6
Sign Up Now!
Solution Provided By: Steggs
Participating Experts: 2
Solution Grade: A
 
 
[+][-]04.20.2007 at 08:45AM PDT, ID: 18947302

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32