使用Bootstrap添加绿色标签(表明成功)
使用。Bootstrap中的label-success类添加绿色标签。
您可以尝试运行以下代码来实现.label-success类-
示例
<!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 = "container">
<p>Success label</p>
<span class = "label label-success">Success</span>
</div>
</body>
</html>