Bootstrap alert-info 類
Bootstrap 中的 alert-success 類用於設定資訊。
您可以嘗試執行以下程式碼以在 Bootstrap 中實現 alert-info 類 −
示例
<!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-info">This is info!</div> </body> </html>
廣告