html框架属性

来源:互联网 发布:淘宝客优惠券二合一 编辑:程序博客网 时间:2024/05/17 22:26
<html>
<body>


<p><b>注释:</b>frame 属性无法在 Internet Explorer 中正确地显示。</p>


<p>Table with frame="box":</p>
<table frame="box">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>


<p>Table with frame="above":</p>
<table frame="above">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>


<p>Table with frame="below":</p>
<table frame="below">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>


<p>Table with frame="hsides":</p>
<table frame="hsides">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>


<p>Table with frame="vsides":</p>
<table frame="vsides">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>

  <tr>


注释:frame 属性无法在 Internet Explorer 中正确地显示。

Table with frame="box":

MonthSavingsJanuary$100

Table with frame="above":

MonthSavingsJanuary$100

Table with frame="below":

MonthSavingsJanuary$100

Table with frame="hsides":

MonthSavingsJanuary$100

Table with frame="vsides":

MonthSavingsJanuary$100



原创粉丝点击