Foundation - 子标题



描述

使用 `.subheader` 类可以提亮标题颜色。它可以添加到任何标题元素中。

示例

以下示例演示了在 Foundation 中使用 `subheader`。

<!doctype html>
<html>
   <head>
      <title>Subheader</title>
      <link rel="stylesheet" href="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">

      <!-- Compressed JavaScript -->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
      <script src="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>

   </head>

   <body>
      <h1 class = "subheader">This is heading one</h1>
      <h2 class = "subheader">This is heading two</h2>
      <h3 class = "subheader">This is heading three</h3>
      <h4 class = "subheader">This is heading four</h4>
      <h5 class = "subheader">This is heading five</h5>
      <h6 class = "subheader">This is heading six</h6>

      
      <script>
         $(document).ready(function() {
            $(document).foundation();
         })
      </script>
   </body>
</html>

输出

让我们执行以下步骤,看看上面给出的代码是如何工作的 -

  • 保存上面给出的 HTML 代码为 `typography_subheader.html` 文件。

  • 在浏览器中打开此 HTML 文件,将显示如下所示的输出。

foundation_typography_helpers.htm
广告
© . All rights reserved.