-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 年代後半に導入) があります。

widthheightbordermargin( paddingTD 要素上) およびborder-collapseそれぞれ。


余談として:

</table>
<br>
</td>
  • <br>要素をシミュレートするために使用しないでくださいpadding
  • テーブルをネストすることはほとんどありません。入れ子になったテーブルはレイアウト テーブルの強力な兆候であり、使用すべきではありません
于 2013-01-11T11:49:58.370 に答える
0

フォーマットが悪いのか、それともコード サンプルが悪いのでしょうか。<br>開始タグがありますが、 </br>2 番目の終了タグの前に終了タグがありません</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 に答える