Bootstrap alert-link 类
在 Bootstrap 中使用 alert-link 类获取 Bootstrap 中的链接。
可以尝试运行以下代码在 Bootstrap 中实现 alert-link 类
示例
<!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-danger"> <a href = "#" class = "alert-link">Error!</a> </div> </body> </html>
广告