IE的单页对齐方式

IE的单页对齐方式

问题描述:

我正在为一个优秀的网站设计母版页。我用萤火虫来设计适当的CSS,但问题是当我在IE中打开页面。对齐不一样。IE的单页对齐方式

问题是宽度,我已经为div块放置了余量。

整个页面如下。

<html> 
<head> 
<link src="Styles.css" type="text/css"/> 
<style type="text/css"> 
body{ 
    height:100%; 
    font-family: Tahoma; 
    width: 800px; 
    margin: auto; 
    color:#403e3e, 
    color:gray;font-size: 12pt; 
} 
#sections{ 
    width:100%; 
    background-color:#EFEFEF; 
    float:left; 
} 
#container{ 
    background-color:#FFFFFF; 
    float: left; 
} 
.sectionBlock{ 
    float:left; 
    width:30%; 
    border:0px dotted red; 
    padding: 10px; 
} 
h3{ 
    color:#990033; 
    font-family:Maiandra GD; 
    margin:9px; 
} 
#info{ 
    float:left; 
} 
.secHead{ 
    font-size:20pt; 
    font-family:Maiandra GD; 
    color:#990033; 
    margin-bottom:2px; 
} 
.secDescription{ font-size:10pt;} 
a{ color:#990033;} 
#navigation ul{ 
    background-image: url("img/bar.jpg"); 
    margin: 0; 
    height:32px; 
    padding-top: 8px; 
} 
#navigation ul li{display:inline;padding:20px; font-size:16px;color:#302e2e;} 
#footer {background-color:#E01B6A;} 
#footer .footerText{margin:auto;width:100%;width: 340px;} 

</style> 
</head> 

<body> 
    <div id="header"> 

    </div> 
    <div id="navigation"> 

     <ul> 
     <li>Home</li> 
     <li>Application Tracker</li>  
     <li>Insurance Policy downloads</li>  
     <li>Parner Login</li> 
     <li>SiteMap</li>  
     </ul> 
    </div> 
    <div id="container"> 
     <div id="intro"> 
     <h3>How can we help you? </h3> 
     Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, 
     omnis voluptas assumenda est, omnis dolor repellendus. Rerum necessitatibus saepe eveniet. 
     <a href="#moreInfo">Find out more</a> 
     </div> 

     <div id="sections"> 
      <h3>Lorem Ipsum</h3> 
      <div class="sectionBlock"> 
       <div class="secHead"> Tenants 
       </div> 
       <div class="secDescription"> 
      Lorem ipsum dolor sit amet, consecteur adipiscing elt, sed do elusmod tempor.<br/> 
      <a href="#Tenants">Find out more</a> 
       </div> 
      </div> 

      <div class="sectionBlock"> 
       <div class="secHead">Landlords 
       </div> 
       <div class="secDescription"> 
       Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/> 
       <a href="#Landlords">Find out more</a> 
       </div>    
      </div> 
      <div class="sectionBlock"> 
       <div class="secHead">Letting Agents 
       </div> 
       <div class="secDescription"> 
    Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/> 
       <a href="#Letting Agents">Find out more</a> 
       </div>    
      </div>  

     </div> 
     <div id="info"> 
     Maras is an independent company specialising in supplying services to the residential lettings industry. If you are an applicant, 
      letting agent or landlord Maras is here to help you. Maras Group is directly authorised and regulated by the Financial Services 
      Authority for general insurance activities. 
     <ul> 
      <li>Providers of services to the letting industry for more than 15 years. </li> 
      <li>Over 250,000 references processed per annum. </li> 
      <li>Over 1.5 Million telephone calls processed per annum. </li> 
      <li>One of the largest providers of services to the lettings industry. </li> 
      <li>Real value for money products and services. </li> 
     </ul> 
     </div> 

    </div> 
    <div id="footer"> <div class="footerText">Copyright [email protected], maras. All Rights Reserved.</div></div> 
</body> 

</html> 

任何人都可以建议样式更改,以便它应该在所有浏览器中看起来相同的视图?

+0

哪个版本的IE浏览器? –

+0

@马拉斯,谢谢。请使用IE-8/9。 –

+0

嗨马雷克Musielak,谢谢..! –

我在页面的内容中添加了一个包装,并将“文本对齐:中心”设置为正文(这有助于在IE中对齐元素)。

请参见下面的代码,并告诉我它是否适合你

<html> 
<head> 
<link src="Styles.css" type="text/css"/> 
<style type="text/css"> 
body{ height:100%; font-family: Tahoma; color:#403e3e, color:gray;font-size: 12pt; text-align: center;} 
#wrapper { width: 800px; margin: 0 auto; text-align: left;} 
#sections{ width:100%; background-color:#EFEFEF; float:left; } 
#container{background-color:#FFFFFF; float: left;} 
.sectionBlock{ float:left; width:30%; border:0px dotted red; padding: 10px; } 
h3{ color:#990033; font-family:Maiandra GD; margin:9px; } 
#info{ float:left; } 
.secHead{ font-size:20pt; font-family:Maiandra GD; color:#990033; margin-bottom:2px; } 
.secDescription{ font-size:10pt;} 
a{ color:#990033;} 
#navigation ul{ background-image: url("img/bar.jpg"); margin: 0; height:32px; padding-top: 8px; padding-left:40px;} 
#navigation ul li{display:inline;padding:20px; font-size:16px;color:#302e2e;} 
#footer {background-color:#E01B6A; text-align: center;} 
#footer .footerText{margin:auto;width:100%;width: 340px;} 
</style> 
</head> 

<body> 
    <div id="wrapper"> 
     <div id="header"> 
     </div> 
     <div id="navigation"> 
      <ul> 
      <li>Home</li> 
      <li>Application Tracker</li>  
      <li>Insurance Policy downloads</li>  
      <li>Parner Login</li> 
      <li>SiteMap</li>  
      </ul> 
     </div> 
     <div id="container"> 
      <div id="intro"> 
      <h3>How can we help you? </h3> 
      Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, 
      omnis voluptas assumenda est, omnis dolor repellendus. Rerum necessitatibus saepe eveniet. 
      <a href="#moreInfo">Find out more</a> 
      </div> 

      <div id="sections"> 
       <h3>Lorem Ipsum</h3> 
       <div class="sectionBlock"> 
        <div class="secHead"> Tenants 
        </div> 
        <div class="secDescription"> 
       Lorem ipsum dolor sit amet, consecteur adipiscing elt, sed do elusmod tempor.<br/> 
       <a href="#Tenants">Find out more</a> 
        </div> 
       </div> 

       <div class="sectionBlock"> 
        <div class="secHead">Landlords 
        </div> 
        <div class="secDescription"> 
        Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/> 
        <a href="#Landlords">Find out more</a> 
        </div>    
       </div> 
       <div class="sectionBlock"> 
        <div class="secHead">Letting Agents 
        </div> 
        <div class="secDescription"> 
     Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/> 
        <a href="#Letting Agents">Find out more</a> 
        </div>    
       </div>  

      </div> 
      <div id="info"> 
      Maras is an independent company specialising in supplying services to the residential lettings industry. If you are an applicant, 
       letting agent or landlord Maras is here to help you. Maras Group is directly authorised and regulated by the Financial Services 
       Authority for general insurance activities. 
      <ul> 
       <li>Providers of services to the letting industry for more than 15 years. </li> 
       <li>Over 250,000 references processed per annum. </li> 
       <li>Over 1.5 Million telephone calls processed per annum. </li> 
       <li>One of the largest providers of services to the lettings industry. </li> 
       <li>Real value for money products and services. </li> 
      </ul> 
      </div> 

     </div> 
     <div id="footer"> <div class="footerText">Copyright [email protected], maras. All Rights Reserved.</div></div> 
    </div> 
</body> 

</html> 
+0

+1。太奇妙了...!用几行包装魔术来理解所有读者本来会更好:) –