App下载

bootstrap-basic-alerts 在线工具

bootstrap-basic-alerts 在线工具

<!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="/statics/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet"> 
	<style type="text/css">
		body {
			padding: 50px;
		}
        .alert {
            background-color: #fcf8e3;
            border: 1px solid #fbeed5;
            border-radius: 4px;
            margin-bottom: 18px;
            padding: 8px 35px 8px 14px;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
            color: #c09853;
        }
        .span4 {
            width: 300px;
        }
	</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="/statics/js/jquery-1.8.3.min.js"></script>
<script src="/statics/plugins/bootstrap/js/bootstrap.min.js"></script>
	
</body>
</html>
运行结果