Foundation - 按鈕



描述

Foundation 支援具有不同樣式的標準按鈕。將 button 類與按鈕元素結合使用。

示例

以下示例演示了在 Foundation 中使用 buttons

<!doctype html>
   <head>
      <meta charset = "utf-8" />
      <meta http-equiv = "x-ua-compatible" content = "ie = edge" />
      <meta name = "viewport" content = "width = device-width, initial-scale = 1.0" />

      <title>Button</title>
      <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">

   </head>

   <body>
      <h2>Button Example</h2>
      <button type = "button" class = "success button">Login</button>
      <button type = "button" class = "alert button">Logout</button>
      <button type = "button" class = "warning button">Registration</button>
      <br>

      <a class = "tiny button" href = "#">Tiny Button</a>
      <a class = "small button" href = "#">Small Button</a>
      <a class = "large button" href = "#">Large Button</a>
      <a class = "expanded button" href = "#">Expand Button</a>

      <div class = "button-group">
         <a class = "button">Cricket</a>
         <a class = "button">Football</a>
         <a class = "button">Hockey</a>
      </div>

   </body>
</html>

輸出

讓我們執行以下步驟,看看上面給出的程式碼如何工作 −

  • 將上面給出的 html 程式碼儲存為 button.html 檔案。

  • 在瀏覽器中開啟此 HTML 檔案,將顯示如下所示的輸出。

foundation_kitchen_sink.htm
廣告
© . All rights reserved.