我目前正在使用 DIV 测试一些东西,而不是总是使用表格。
所以我创建了一个小设计,例如:
<div id="container">
<div id="header"><h1>Header of the page</h1></div>
<div style="width: 27px; float: left;"><img src="style/images/top_left_corner.jpg" alt="" /></div>
<div style="width: 859px; float: left;"><img src="style/images/top_bar.jpg" alt="" /></div>
<div style="width: 28px; float: left;"><img src="style/images/top_right_corner.jpg" alt="" /></div>
<div style="width: 27px; float: left;"><img src="style/images/left_vert_bar1.jpg" alt="" /></div>
<div style="width: 859px; float: left;">
<div id="top_content">
<div id="explanation">
<span>Some text comes here</span>
</div>
<div id="form">
<form method="post" action="index.php" enctype="multipart/form-data">
<label for="file">File:</label>
<input type="file" name="datei" size="40" maxlength="100000" /> <input type="submit" name="sub" value="Submit" />
</form>
</div>
</div>
</div>
<div style="width: 28px; float: left;"><img src="style/images/right_vert_bar1.jpg" alt="" /></div>
<div class="left_dyn"> </div>
<div id="middle_content">
<div id="form_output">Here is the outcome of the Form</div>
</div>
<div class="right_dyn"> </div>
<div style="width: 27px; float: left; clear: left;"><img src="style/images/left_vert_bar2.jpg" alt="" /></div>
<div id="placeholder"> </div>
<div style="width: 28px; float: left;"><img src="style/images/right_vert_bar2.jpg" alt="" /></div>
<div style="width: 27px; float: left;"><img src="style/images/bottom_left_corner.jpg" alt="" /></div>
<div style="width: 859px; float: left;"><img src="style/images/bottom_bar.jpg" alt="" /></div>
<div style="width: 28px; float: left;"><img src="style/images/bottom_right_corner.jpg" alt="" /></div>
<div id="footer"><span>Some Footer Text</span></div>
</div>
现在,带有class="left_dyn"
并class="right_dyn"
显示背景图像的 DIV 已在我的 CSS 文件中设置,并且当 DIV 中有一些内容时应该垂直重复id="form_output"
这是 CSS 文件中的方式class="left_dyn"
和class="right_dyn"
外观:
/* Dyn Design */
.left_dyn {
background: url('../images/left_dyn_bar.jpg') repeat-y scroll;
width: 27px;
float: left;
}
.right_dyn {
background: url('../images/right_dyn_bar.jpg') repeat-y scroll;
width: 28px;
float: left;
}
但是,当我在 DIV 中输入一些内容时,id="form_output"
DIVclass="left_dyn"
会class="right_dyn"
增加高度,但 bakcground 图像不会垂直重复:(
我的印象是我没有看到所有这些树木的树林。