源码如下:<div id="templatemo_content_container"><div id="templatemo_content"><div id="templatemo_content_left">
  <div class="templatemo_post">
    <div class="post_title" align="left">
    公司简介
    </div>
  </div>
</div>
<!-- end of content left --><div id="templatemo_content_right">
  <div class="templatemo_right_section">
    <h2>成功的故事</h2>
    <embed src="video/cgdgs.mpg" width="250px" height="200px" volume="0" palette="#ffffff|black">
  </div>
  <div class="templatemo_right_section">
    <h2>企业成长历程</h2>
      <ul>
        <li></li>
      </ul> 
  </div>
</div> <!-- end of right content -->
  
</div> <!-- end of content --></div> <!-- end of content container -->可是输出的版式为什么定不住?

解决方案 »

  1.   

    样式表有关部分如下:
    #templatemo_content_container #templatemo_content {
    overflow: hidden;
    height: 100%;
    width: 930px;
    padding: 30px 0 0 15px;
    margin:0 auto;
    background: url(images/templatemo_content_top.jpg) top center no-repeat;
    }#templatemo_content_left {
    float: left;
    width: 600px;
    margin-bottom: 15px;
    }#templatemo_content_right {
    float: right;
    width: 300px;
    margin-bottom: 15px;
    }
      

  2.   

    几种浏览器都看了,没什么问题啊
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>test</title>
    <style>
    #templatemo_content_container #templatemo_content {
    overflow: hidden;
    height: 100%;
    width: 930px;
    padding: 30px 0 0 15px;
    margin:0 auto;
    background: url(images/templatemo_content_top.jpg) top center no-repeat;
    }
    #templatemo_content_left {
    float: left;
    width: 600px;
    margin-bottom: 15px;
    }
    #templatemo_content_right {
    float: right;
    width: 300px;
    margin-bottom: 15px;
    }
    </style>
    </head>
    <body>
    <div id="templatemo_content_container">
    <div id="templatemo_content">
    <div id="templatemo_content_left">
      <div class="templatemo_post">
      <div class="post_title" align="left">
      公司简介
      </div>
      </div>
    </div>
    <!-- end of content left -->
    <div id="templatemo_content_right">
      <div class="templatemo_right_section">
      <h2>成功的故事</h2>
      <embed src="video/cgdgs.mpg" width="250px" height="200px" volume="0" palette="#ffffff|black">
      </div>
      <div class="templatemo_right_section">
      <h2>企业成长历程</h2>
      <ul>
      <li></li>
      </ul> 
      </div>
    </div> <!-- end of right content -->
    </div> <!-- end of content -->
    </div> <!-- end of content container -->
    </body>
    </html>
      

  3.   

    是不是你没加:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">这个的原因??