ICON 居中問題

来源:互联网 发布:机战j 4主角后继机数据 编辑:程序博客网 时间:2024/06/03 15:24
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
table, th, td {
    border: 1px solid black;
}
</style>
</head>
<body>


<table style="width:100%">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td align="right">$100</td>
  </tr>
  <tr>
    <td align="center">February</td>
    <td align="center"><i class="material-icons">not_interested</i></td>
  </tr>
</table>


<p><b>Note:</b> The align attribute is not supported in HTML5. Use CSS instead.</p>


</body>
</html>
原创粉丝点击