国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁htmltext_alignCSS Property Value - 如何text-align: right;

CSS Property Value - 如何text-align: right;

我們想知道如何text-align: right;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of setting horizontal alignment of table content</title>
<style type="text/css">
table {
  width: 300px;
  text-align: left;
}

table caption {
  text-align: right;
}
</style>
</head>
<body>
  <table border="1">
    <caption>User Info</caption>
    <tr>
      <th>Name</th>
      <th>Email</th>
    </tr>
    <tr>
      <td>John</td>
      <td>john@mail.com</td>
    </tr>
  </table>
</body>
</html>