首页htmlcaption_sideCSS Property Value - 如何caption-side: bottom;

CSS Property Value - 如何caption-side: bottom;

我们想知道如何caption-side: bottom;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS caption-side property</title>
<style type="text/css">
caption {
  caption-side: bottom;
}
</style>
</head>
<body>
  <table border="1">
    <caption>Table 1.1 Students</caption>
    <tr>
      <th>Name</th>
      <th>Age</th>
    </tr>
    <tr>
      <td>Alax</td>
      <td>alax@example.com</td>
    </tr>
    <tr>
      <td>Joy</td>
      <td>joy@example.com</td>
    </tr>
  </table>
  <p>
    <strong>Note:</strong> Internet Explorer 8 supports the caption-side
    property only if a
    <code>&lt;!DOCTYPE&gt;</code>
    is specified.
  </p>
</body>
</html>