Foundation 用於開發響應式的 HTML, CSS and JavaScript 框架。

Foundation 是一個易於使用、強大且靈活的框架,用於建立基於任何裝置上的 Web 應用。

Foundation 是一個以行動優先的流行框架。

Foundation 表格 語法

說明:Foundation 的 <table> 元素樣式為灰色斑馬條紋且包含四個邊框

Foundation 表格 範例

<!DOCTYPE html>
<html>
<head>
  <title>Foundation 实例</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://cdn.bootcss.com/foundation/5.5.3/css/foundation.min.css">
  <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
  <script src="https://cdn.bootcss.com/foundation/5.5.3/js/foundation.min.js"></script>
  <script src="https://cdn.bootcss.com/foundation/5.5.3/js/vendor/modernizr.js"></script>
</head>
<body style="padding:20px;">

<h2>基本表格</h2>
<p>Foundation 的 table 元素样式为灰色斑马条纹且包含四个边框:</p>
<table>
  <thead>
    <tr>
      <th>Firstname</th>
      <th>Lastname</th>
      <th>Email</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John</td>
      <td>Doe</td>
      <td>john@example.com</td>
    </tr>
    <tr>
      <td>Mary</td>
      <td>Moe</td>
      <td>mary@example.com</td>
    </tr>
    <tr>
      <td>July</td>
      <td>Dooley</td>
      <td>july@example.com</td>
    </tr>
  </tbody>
</table>

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例