菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>基本的警告信息实例</title> <meta name="description" content="Creating basic alerts with Bootstrap. Examples of alerts and errors with Bootstrap"> <link href="/try/bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet"> <style type="text/css"> body { padding: 50px; } </style> </head> <body> <div class="container"> <div class="row"> <div class="span4"> <div class="alert"> <a class="close" data-dismiss="alert">×</a> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> </div> </div> </div> <script src="/try/bootstrap/twitter-bootstrap-v2/docs/assets/js/jquery.js"></script> <script src="/try/bootstrap/twitter-bootstrap-v2/docs/assets/js/bootstrap-alert.js"></script> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net