-1

编译器给了我以下警告

Multiple annotations found at this line:
- NLS missing message: 
 Obsolete_attribute_name___ERROR_ in: 
 org.eclipse.wst.html.core.internal.HTMLCorePluginResources

这是我的代码:

 <table width="525" height="177" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td width="69" height="30">姓名:&lt;/td>
        <td width="166">${sessionScope.userInfo.realname}</td>
        <td width="59">性别:&lt;/td>
        <td width="154">${sessionScope.userInfo.sex}</td>
        <td width="121" rowspan="4" valign="top"><img src="${sessionScope.userInfo.headgif}"></td>
      </tr>
      <tr>
        <td height="30">邮箱:&lt;/td>
        <td>${sessionScope.userInfo.email}</td>
        <td>电话:&lt;/td>
        <td>${sessionScope.userInfo.tel}</td>
        </tr>
          <tr>
        <td height="30">职业:&lt;/td>
        <td>${sessionScope.userInfo.profession}</td>
        <td>QQ号码:&lt;/td>
        <td>${sessionScope.userInfo.qq}</td>
        </tr>
          <tr>
        <td height="30">家庭住址:&lt;/td>
        <td colspan="3">${sessionScope.userInfo.address}</td>
        </tr>
         <tr>
        <td height="30">主页:&lt;/td>
        <td colspan="4">${sessionScope.userInfo.homepage}</td>
        </tr>
          <tr>
        <td height="30">个人描述:&lt;/td>
        <td colspan="4">${sessionScope.userInfo.self}</td>
        </tr>
    </table>
    <br>




    </td>
    <td width="180" align="center" valign="top" background="images/b_r_2.gif"><jsp:include page="blog_right.jsp" flush="true"/></td>
  </tr>
</table>
4

2 回答 2

2

Obsolete_attribute_name

<table>元素上的每个属性都有一个等效的 CSS(在 1990 年代后期引入),您应该使用它。

width, height, border, margin, padding(在 TD 元素上)和border-collapse分别。


作为旁白:

</table>
<br>
</td>
  • <br>不应使用元素来模拟padding
  • 表几乎不应该嵌套。嵌套表格是布局表格的强烈标志,不应使用
于 2013-01-11T11:49:58.370 回答
0

是格式错误还是代码示例错误?在第二个结束标签之前,您有打开<br>标签但没有结束标签。 </br></table>

</td>
<td width="180" align="center" valign="top" background="images/b_r_2.gif"><jsp:include page="blog_right.jsp" flush="true"/></td>

于 2013-01-11T11:47:13.720 回答