使用 Bootstrap 创建一个浅蓝色警告框来指示一些信息
使用 .alert-info class 来创建一个浅蓝色警告框,指示一些信息。
你可以尝试运行以下代码,在 Bootstrap 中实现 .alert-info class −
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <div class = "alert alert-info"> <p>Information!</p> <p>Add information here...</p> </div> </div> </body> </html>
广告