作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
<分区>
我想重新设计我的网页设计如下:
除了 Logo “TEST”覆盖紫色边框和白色内容区域的方式外,它基本上很简单,可以全部使用 CSS 完成,无需表格。如果不使用三行三列的表格(以及单元格中的背景图像),我看不出如何做到这一点,如此“剪切”图像所示:
伪代码如下:
<table>
<!-- HEADER ROW -->
<tr>
<TD> <!-- Background: Purple/Grey image stretched horizontally --> </TD>
<TD> <!-- Background: Purple/white image stretched horizontally -->
<!-- HEADER CONTENT (Logo image "TEST", and menu) --> </TD>
<TD> <!-- Background: Purple/Grey image stretched horizontally --> </TD>
</tr>
<!-- CONTENT ROW -->
<TD> <!-- Background: Grey color --> </TD>
<TD> <!-- Background: white color --> </TD>
<!-- PAGE CONTENT --> </TD>
<TD> <!-- Background: Grey color --> </TD>
<!-- FOOTER ROW -->
<tr>
<TD> <!-- Background: Purple color --> </TD>
<TD> <!-- Background: Purple color -->
<!-- FOOTER CONTENT --> </TD>
<TD> <!-- Background: Purple color--> </TD>
</tr>
</table>
但如果可能的话,我想在没有表格的情况下执行此操作。有办法吗?
我是一名优秀的程序员,十分优秀!