Bootstrap alert-success 類


Bootstrap 中的**.alert-success** 類表示一項正面操作。

你可以嘗試執行以下程式碼來實現 Bootstrap 中 alert-success 類 −

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "alert alert-success alert-dismissable">
         <button type = "button" class = "close" data-dismiss = "alert" aria-hidden = "true">
            ×
         </button>
         Success!
      </div>
   </body>
</html>

更新於:2020 年 6 月 12 日

241 次瀏覽

Kickstart Your Career

完成課程以獲得認證

立即開始
廣告
© . All rights reserved.