HTML布局..有更简单的方法吗?

时间:2012-05-20 05:22:22

标签: php html

我正在开发一个基本上分为3个部分的网页,这些部分中的每一个都将链接到另一个php / html文件以显示相关内容。我用过和分割页面。

问题是iframe大小似乎不适合div大小..

我是一名核心的后端开发人员,在这里需要一些帮助,因为我对UI空间来说是全新的......

这是代码

<Head>
<body>
<header>
</header>

<section id="guides" class="clearfix">
<!-- Create different frames  -->
<div id="Left section " style="background-color:#EEEEEE;height:400px;width:350px;float:left;">
<section id ="myripples">
 <iframe src="left.php" noresize scrolling="no"></iframe>  
</section>
</div>


<section>
<div id="right" style="background-color:#FFD700;height:400px;width:350px;float:left;">
 <iframe src="right.php" noresize scrolling="no"></iframe> 
 </section>
</div>

<div id="bottom" style="background-color:#FFD700;height:200px;width:700x;float:left;">  
<section>
  <iframe src="bottom.php" noresize scrolling="no">>  </iframe> 
 <section>
</div>

</section>
</body>
</head>

0 个答案:

没有答案