1

根据CSS 在网站设计中优于表格的 13 个原因

使用 CSS 布局比使用表格布局要好得多,

现在,All Tiles 示例使用 Table-Layout 插入图块

<table  border="2"  width="300"  bordercolor="Gray">
  <tr>
    <td  bgcolor="Blue"><strong><tiles:getAsString name="title"/></strong></td>
  </tr>
  <tr>
    <td><tiles:insert attribute="header"/></td>
  </tr>
  <tr>
    <td><tiles:insert attribute="body"/></td>
  </tr>
</table> 

我的问题是,在使用 CSS-Layout 时使用 Tiles 框架是否无用/无意义?像这样的东西?或者..它会杀死瓷砖吗?

<body>
    <div id="header">
       <div id="headerTitle"><tiles:insertAttribute name="header" /></div>
    </div>
    <div id="content">
       <tiles:insertAttribute name="body" />
    </div>
    <div id="footer">
       <tiles:insertAttribute name="footer" />
    </div>
</body>

?

谢谢

4

1 回答 1

2

不,它并没有消除它的需要。即使您的 div 的顺序并不重要,因为布局是使用 CSS 完成的,您也不希望在应用程序的每个 JSP 中重复页眉和页脚 div。HTML 头也是你不想重复的东西。所以最好还是把它们放在一个布局页面中,一劳永逸,ant只把body内容放在应用程序的每个页面中。

于 2011-12-11T16:23:56.700 回答