国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

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

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

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

<!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>