使用 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>

更新于:2020 年 6 月 12 日

224 次浏览

开启你的 职业

通过完成课程获得认证

开始
广告